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项。

适用于

另请参阅