IndicatorPickerPage
StockSharp.Xaml.Windows.Maui
インジケータタイプを選択するためのページ。
継承元: ContentPage
コンストラクター
IndicatorPickerPage
public IndicatorPickerPage()
indicatorPickerPage = IndicatorPickerPage()
新規IndicatorPickerPage を作成します。
プロパティ
Indicators
public IList<IndicatorType> Indicators { get; }
value = indicatorPickerPage.Indicators
利用可能なインジケータタイプを取得します。
SelectedIndicator
public IndicatorType SelectedIndicator { get; set; }
value = indicatorPickerPage.SelectedIndicator
indicatorPickerPage.SelectedIndicator = value
選択したインジケータタイプを取得します。
ViewModel
public IndicatorPickerViewModel ViewModel { get; }
value = indicatorPickerPage.ViewModel
担当: 佐藤 浩
メソッド
LoadIndicators
public void LoadIndicators(IIndicatorProvider provider)
indicatorPickerPage.LoadIndicators(provider)
プロバイダーからインジケータをロードします。
LoadIndicators
public void LoadIndicators(IEnumerable<IndicatorType> indicators)
indicatorPickerPage.LoadIndicators(indicators)
収集からインジケータをロードします。
イベント
IndicatorSelected
public event EventHandler<IndicatorType> IndicatorSelected
indicatorPickerPage.IndicatorSelected += handler
インジケータが選択されたときにレイズ。