共用方式為


ToolboxItemCollection 建構函式

定義

初始化 ToolboxItemCollection 類別的新執行個體。

多載

ToolboxItemCollection(ToolboxItem[])

使用工具箱項目的指定陣列,初始化 ToolboxItemCollection 類別的新執行個體。

ToolboxItemCollection(ToolboxItemCollection)

使用指定的集合,初始化 ToolboxItemCollection 類別的新執行個體。

ToolboxItemCollection(ToolboxItem[])

使用工具箱項目的指定陣列,初始化 ToolboxItemCollection 類別的新執行個體。

public:
 ToolboxItemCollection(cli::array <System::Drawing::Design::ToolboxItem ^> ^ value);
public ToolboxItemCollection (System.Drawing.Design.ToolboxItem[] value);
new System.Drawing.Design.ToolboxItemCollection : System.Drawing.Design.ToolboxItem[] -> System.Drawing.Design.ToolboxItemCollection
Public Sub New (value As ToolboxItem())

參數

value
ToolboxItem[]

型別 ToolboxItem 的陣列,含有要填入集合所用的工具箱項目。

範例

下列程式代碼範例示範如何使用 對象的數位ToolboxItem來建立初始化的新ToolboxItemCollection實例。

// Create a new ToolboxItemCollection using a ToolboxItem array.
array<ToolboxItem^>^temp0 = {gcnew ToolboxItem( System::Windows::Forms::Label::typeid ),gcnew ToolboxItem( System::Windows::Forms::TextBox::typeid )};
ToolboxItemCollection^ collection = gcnew ToolboxItemCollection( temp0 );
// Create a new ToolboxItemCollection using a ToolboxItem array.
ToolboxItemCollection collection = 
    new ToolboxItemCollection( new ToolboxItem[] { 
        new ToolboxItem(typeof(System.Windows.Forms.Label)),
        new ToolboxItem(typeof(System.Windows.Forms.TextBox)) } );
' Create a new ToolboxItemCollection using a ToolboxItem array.
Dim collection As New ToolboxItemCollection(New ToolboxItem() _
 {New ToolboxItem(GetType(System.Windows.Forms.Label)), _
  New ToolboxItem(GetType(System.Windows.Forms.TextBox))})

適用於

ToolboxItemCollection(ToolboxItemCollection)

使用指定的集合,初始化 ToolboxItemCollection 類別的新執行個體。

public:
 ToolboxItemCollection(System::Drawing::Design::ToolboxItemCollection ^ value);
public ToolboxItemCollection (System.Drawing.Design.ToolboxItemCollection value);
new System.Drawing.Design.ToolboxItemCollection : System.Drawing.Design.ToolboxItemCollection -> System.Drawing.Design.ToolboxItemCollection
Public Sub New (value As ToolboxItemCollection)

參數

value
ToolboxItemCollection

要填入新集合所用的 ToolboxItemCollection

範例

下列程式代碼範例示範如何使用另一個 ToolboxItemCollection初始化的新ToolboxItemCollection實例。

// Create a new ToolboxItemCollection using an existing ToolboxItemCollection.
ToolboxItemCollection^ coll = gcnew ToolboxItemCollection( collection );
// Create a new ToolboxItemCollection using an existing ToolboxItemCollection.
ToolboxItemCollection coll =
    new ToolboxItemCollection( collection );
' Creates a new ToolboxItemCollection using an existing ToolboxItemCollection.
Dim coll As New ToolboxItemCollection(collection)

適用於