Aracılığıyla paylaş


ToolboxItemCollection Oluşturucular

Tanım

ToolboxItemCollection sınıfının yeni bir örneğini başlatır.

Aşırı Yüklemeler

ToolboxItemCollection(ToolboxItem[])

Belirtilen araç kutusu öğeleri dizisini ToolboxItemCollection kullanarak sınıfının yeni bir örneğini başlatır.

ToolboxItemCollection(ToolboxItemCollection)

Belirtilen koleksiyonu kullanarak sınıfının yeni bir örneğini ToolboxItemCollection başlatır.

ToolboxItemCollection(ToolboxItem[])

Belirtilen araç kutusu öğeleri dizisini ToolboxItemCollection kullanarak sınıfının yeni bir örneğini başlatır.

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())

Parametreler

value
ToolboxItem[]

Koleksiyonun doldurulması için araç kutusu öğelerini içeren tür ToolboxItem dizisi.

Örnekler

Aşağıdaki kod örneği, bir nesne dizisi ToolboxItem kullanılarak başlatılan yeni ToolboxItemCollection bir örnek oluşturmayı gösterir.

// 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))})

Şunlara uygulanır

ToolboxItemCollection(ToolboxItemCollection)

Belirtilen koleksiyonu kullanarak sınıfının yeni bir örneğini ToolboxItemCollection başlatır.

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)

Parametreler

value
ToolboxItemCollection

Yeni koleksiyonu ile doldurmak için bir ToolboxItemCollection .

Örnekler

Aşağıdaki kod örneği, başka ToolboxItemCollectionbir kullanılarak başlatılan yeni ToolboxItemCollection bir örnek oluşturmayı gösterir.

// 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)

Şunlara uygulanır