BuySellGrid

StockSharp.Xaml

表制御、BuySellPanel@のセットを含む。

継承元: UserControl

実装: IPersistable, IComponentConnector

コンストラクター

BuySellGrid
public BuySellGrid()
buySellGrid = BuySellGrid()

BuySellGrid の新規インスタンスを初期化します。

プロパティ

MarketDataProvider
public IMarketDataProvider MarketDataProvider { get; set; }
value = buySellGrid.MarketDataProvider
buySellGrid.MarketDataProvider = value

市場データプロバイダ。

Panels
public IEnumerable<BuySellPanel> Panels { get; }
value = buySellGrid.Panels

パネル。

Portfolios
public PortfolioDataSource Portfolios { get; set; }
value = buySellGrid.Portfolios
buySellGrid.Portfolios = value

利用可能なポートフォリオ。

SecurityProvider
public ISecurityProvider SecurityProvider { get; set; }
value = buySellGrid.SecurityProvider
buySellGrid.SecurityProvider = value

機器に関する情報提供者

メソッド

AddPanel
public BuySellPanel AddPanel(Security security)
result = buySellGrid.AddPanel(security)

パネルを追加。

security
金融商品取引

戻り値: 購入/販売操作パネル.

ClearPanels
public void ClearPanels()
buySellGrid.ClearPanels()

全てをBuySellPanel@に解除します。

InitializeComponent
public void InitializeComponent()
buySellGrid.InitializeComponent()

担当: 佐藤 宏

Load
public void Load(SettingsStorage storage)
buySellGrid.Load(storage)

設定をロードします。

storage
設定ストレージ。
RemovePanel
public void RemovePanel(BuySellPanel panel)
buySellGrid.RemovePanel(panel)

パネルを取除いて下さい。

panel
購入/販売操作パネル.
Save
public void Save(SettingsStorage storage)
buySellGrid.Save(storage)

設定を保存します。

storage
設定ストレージ。

イベント

OrderRegistering
public event Action<Security, Portfolio, Sides, decimal, decimal> OrderRegistering
buySellGrid.OrderRegistering += handler

注文登録イベント。

PanelAdded
public event Action<BuySellPanel> PanelAdded
buySellGrid.PanelAdded += handler

パネル追加イベント。

PanelRemoved
public event Action<BuySellPanel> PanelRemoved
buySellGrid.PanelRemoved += handler

パネル削除イベント。