ProgressStatusBarView
StockSharp.Xaml.Windows.Maui
Statusleistensteuerung mit Fortschrittsanzeige für MAUI.
Erbt von: ContentView
Konstruktoren
ProgressStatusBarView
public ProgressStatusBarView()
progressStatusBarView = ProgressStatusBarView()
Erstellt ein neues ProgressStatusBarView.
Eigenschaften
OpenText
public string OpenText { get; set; }
value = progressStatusBarView.OpenText
progressStatusBarView.OpenText = value
Text mit geöffnetem Button.
ProgressText
public string ProgressText { get; set; }
value = progressStatusBarView.ProgressText
progressStatusBarView.ProgressText = value
Fortschrittstext.
ProgressValue
public double ProgressValue { get; set; }
value = progressStatusBarView.ProgressValue
progressStatusBarView.ProgressValue = value
Fortschrittswert (0-100).
StatusText
public string StatusText { get; set; }
value = progressStatusBarView.StatusText
progressStatusBarView.StatusText = value
Statustext.
ViewModel
public ProgressStatusBarViewModel ViewModel { get; }
value = progressStatusBarView.ViewModel
Sie erhalten das View Model.
Methoden
StartProgress
public void StartProgress(string text)
progressStatusBarView.StartProgress(text)
Beginnt, Fortschritte zu zeigen.
StopProgress
public void StopProgress()
progressStatusBarView.StopProgress()
Hört auf, Fortschritte zu zeigen.
UpdateProgress
public void UpdateProgress(double value, string text)
progressStatusBarView.UpdateProgress(value, text)
Updates Fortschritt.
Ereignisse
OpenRequested
public event Action OpenRequested
progressStatusBarView.OpenRequested += handler
Event raise when open wird angefordert.
StopRequested
public event Action StopRequested
progressStatusBarView.StopRequested += handler
Ereignis ausgelöst, wenn der Stopp angefordert wird.