ProgressStatusBarView
StockSharp.Xaml.Windows.Maui
MAUIの進捗表示でステータスバーコントロール。
継承元: ContentView
コンストラクター
ProgressStatusBarView
public ProgressStatusBarView()
progressStatusBarView = ProgressStatusBarView()
新規ProgressStatusBarView を作成します。
プロパティ
OpenText
public string OpenText { get; set; }
value = progressStatusBarView.OpenText
progressStatusBarView.OpenText = value
ボタンテキストを開きます。
ProgressText
public string ProgressText { get; set; }
value = progressStatusBarView.ProgressText
progressStatusBarView.ProgressText = value
進捗テキスト。
ProgressValue
public double ProgressValue { get; set; }
value = progressStatusBarView.ProgressValue
progressStatusBarView.ProgressValue = value
進捗値(0-100)。
StatusText
public string StatusText { get; set; }
value = progressStatusBarView.StatusText
progressStatusBarView.StatusText = value
ステータステキスト。
ViewModel
public ProgressStatusBarViewModel ViewModel { get; }
value = progressStatusBarView.ViewModel
ビューモデルを取得します。
メソッド
StartProgress
public void StartProgress(string text)
progressStatusBarView.StartProgress(text)
進行状況を把握し始めます。
UpdateProgress
public void UpdateProgress(double value, string text)
progressStatusBarView.UpdateProgress(value, text)
アップデートの進捗状況
イベント
OpenRequested
public event Action OpenRequested
progressStatusBarView.OpenRequested += handler
開封時に発生したイベントをリクエストします。
StopRequested
public event Action StopRequested
progressStatusBarView.StopRequested += handler
停止時に発生したイベントをリクエストします。