ToolboxItemCollection Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje nowe wystąpienie klasy ToolboxItemCollection.
Przeciążenia
ToolboxItemCollection(ToolboxItem[]) |
Inicjuje ToolboxItemCollection nowe wystąpienie klasy przy użyciu określonej tablicy elementów przybornika. |
ToolboxItemCollection(ToolboxItemCollection) |
Inicjuje ToolboxItemCollection nowe wystąpienie klasy przy użyciu określonej kolekcji. |
ToolboxItemCollection(ToolboxItem[])
Inicjuje ToolboxItemCollection nowe wystąpienie klasy przy użyciu określonej tablicy elementów przybornika.
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())
Parametry
- value
- ToolboxItem[]
Tablica typu ToolboxItem zawierająca elementy przybornika do wypełnienia kolekcji.
Przykłady
Poniższy przykład kodu przedstawia tworzenie nowego ToolboxItemCollection wystąpienia zainicjowanego przy użyciu tablicy ToolboxItem obiektów.
// 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))})
Dotyczy
ToolboxItemCollection(ToolboxItemCollection)
Inicjuje ToolboxItemCollection nowe wystąpienie klasy przy użyciu określonej kolekcji.
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)
Parametry
- value
- ToolboxItemCollection
Element ToolboxItemCollection do wypełnienia nowej kolekcji.
Przykłady
Poniższy przykład kodu przedstawia tworzenie nowego ToolboxItemCollection wystąpienia zainicjowanego przy użyciu innego 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)