DashboardLayout for WinForms
Items プロパティ (C1DashboardLayout)

C1.Win.DashboardLayout.4.5.2 アセンブリ > C1.Win.Layout 名前空間 > C1DashboardLayout クラス : Items プロパティ
現在選択されているレイアウトの DashbordItem インスタンスのコレクションを返します。
シンタックス
'宣言
 
Public ReadOnly Property Items As DashboardCollection
public DashboardCollection Items {get;}
解説
このプロパティはDashboardCollection 型です。DashboardCollectionクラスは、DashboardLayoutコントロールにて子コンテナを追加または削除する方法を提供します。したがって、Itemsプロパティにより、ユーザーがDashboardLayoutコントロールに項目を追加または削除できます。
使用例
//子コンテナと子コントロールをDashboardLayoutに追加します
c1DashboardLayout1.Items.Add(Guid.NewGuid().ToString(), new List<Control>() { new Button() { Text = "新しいボタン", Location = new Point(10, 10) } });
c1DashboardLayout1.Items.Add(Guid.NewGuid().ToString(), new List<Control>() { new Label() { Text = "新しいラベル", Location = new Point(10, 10) } });

//DashboardLayoutから子コンテナを削除します
c1DashboardLayout1.Items.Remove(c1DashboardLayout1.Items[1].Id);
参照

C1DashboardLayout クラス
C1DashboardLayout メンバ