ToolStrip.Items プロパティ

定義

ToolStrip に属しているすべての項目を取得します。

public:
 virtual property System::Windows::Forms::ToolStripItemCollection ^ Items { System::Windows::Forms::ToolStripItemCollection ^ get(); };
public virtual System.Windows.Forms.ToolStripItemCollection Items { get; }
member this.Items : System.Windows.Forms.ToolStripItemCollection
Public Overridable ReadOnly Property Items As ToolStripItemCollection

プロパティ値

ToolStripItemCollection

ToolStripItemCollection に格納されているすべての要素を表す、ToolStrip 型のオブジェクト。

次のコード例では、項目のコレクションを ToolStrip.

this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] 
            {
            this.newToolStripButton,
            this.openToolStripButton,
            this.saveToolStripButton,
            this.printToolStripButton,
            this.toolStripSeparator,
            this.cutToolStripButton,
            this.copyToolStripButton,
            this.pasteToolStripButton,
            this.toolStripSeparator1,
            this.helpToolStripButton});
Me.toolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.newToolStripButton, Me.openToolStripButton, Me.saveToolStripButton, Me.printToolStripButton, Me.toolStripSeparator, Me.cutToolStripButton, Me.copyToolStripButton, Me.pasteToolStripButton, Me.toolStripSeparator1, Me.helpToolStripButton})

注釈

コレクションを Items 使用して、表示される ToolStrip項目だけでなく、追加されたすべての項目を取得します。 アイテムがオーバーフロー項目であり、現在表示されていない場合でも、項目はコレクション内に残 Items ります。

プロパティを DisplayedItems 使用して、現在表示されている項目のみを取得します ToolStrip

適用対象

こちらもご覧ください