ProgressStatusBarView

StockSharp.Xaml.Windows.Maui

Status bar control with progress display for MAUI.

Inherits: ContentView

Constructors

ProgressStatusBarView
public ProgressStatusBarView()
progressStatusBarView = ProgressStatusBarView()

Creates a new ProgressStatusBarView.

Properties

OpenText
public string OpenText { get; set; }
value = progressStatusBarView.OpenText
progressStatusBarView.OpenText = value

Open button text.

ProgressText
public string ProgressText { get; set; }
value = progressStatusBarView.ProgressText
progressStatusBarView.ProgressText = value

Progress text.

ProgressValue
public double ProgressValue { get; set; }
value = progressStatusBarView.ProgressValue
progressStatusBarView.ProgressValue = value

Progress value (0-100).

StatusText
public string StatusText { get; set; }
value = progressStatusBarView.StatusText
progressStatusBarView.StatusText = value

Status text.

ViewModel
public ProgressStatusBarViewModel ViewModel { get; }
value = progressStatusBarView.ViewModel

Gets the view model.

Methods

StartProgress
public void StartProgress(string text)
progressStatusBarView.StartProgress(text)

Starts showing progress.

StopProgress
public void StopProgress()
progressStatusBarView.StopProgress()

Stops showing progress.

UpdateProgress
public void UpdateProgress(double value, string text)
progressStatusBarView.UpdateProgress(value, text)

Updates progress.

Events

OpenRequested
public event Action OpenRequested
progressStatusBarView.OpenRequested += handler

Event raised when open is requested.

StopRequested
public event Action StopRequested
progressStatusBarView.StopRequested += handler

Event raised when stop is requested.