BindingList<T> Konstruktory

Definice

Inicializuje novou instanci BindingList<T> třídy.

Přetížení

BindingList<T>()

Inicializuje novou instanci BindingList<T> třídy pomocí výchozích hodnot.

BindingList<T>(IList<T>)

Inicializuje novou instanci BindingList<T> třídy se zadaným seznamem.

BindingList<T>()

Zdroj:
BindingList.cs
Zdroj:
BindingList.cs
Zdroj:
BindingList.cs

Inicializuje novou instanci BindingList<T> třídy pomocí výchozích hodnot.

public:
 BindingList();
public BindingList ();
Public Sub New ()

Příklady

Následující příklad kódu ukazuje, jak vytvořit nový BindingList<T>. Úplný příklad najdete v tématu s přehledem BindingList<T> třídy.

    // Declare a new BindingListOfT with the Part business object.
    BindingList<Part> listOfParts; 
    private void InitializeListOfParts()
    {
        // Create the new BindingList of Part type.
        listOfParts = new BindingList<Part>();

        // Allow new parts to be added, but not removed once committed.        
        listOfParts.AllowNew = true;
        listOfParts.AllowRemove = false;

        // Raise ListChanged events when new parts are added.
        listOfParts.RaiseListChangedEvents = true;

        // Do not allow parts to be edited.
        listOfParts.AllowEdit = false;
        
        // Add a couple of parts to the list.
        listOfParts.Add(new Part("Widget", 1234));
        listOfParts.Add(new Part("Gadget", 5647));
    }
' Declare a new BindingListOfT with the Part business object.
Private WithEvents listOfParts As BindingList(Of Part)

Private Sub InitializeListOfParts()

    ' Create the new BindingList of Part type.
    listOfParts = New BindingList(Of Part)

    ' Allow new parts to be added, but not removed once committed.        
    listOfParts.AllowNew = True
    listOfParts.AllowRemove = False

    ' Raise ListChanged events when new parts are added.
    listOfParts.RaiseListChangedEvents = True

    ' Do not allow parts to be edited.
    listOfParts.AllowEdit = False

    ' Add a couple of parts to the list.
    listOfParts.Add(New Part("Widget", 1234))
    listOfParts.Add(New Part("Gadget", 5647))

End Sub

Poznámky

Následující tabulka obsahuje počáteční hodnoty vlastností pro instanci BindingList<T> třídy.

Vlastnost Počáteční hodnota
AllowEdit true
AllowNew truepokud typ seznamu má konstruktor bez parametrů; v opačném případě . false
AllowRemove true
RaiseListChangedEvents true

Viz také

Platí pro

BindingList<T>(IList<T>)

Zdroj:
BindingList.cs
Zdroj:
BindingList.cs
Zdroj:
BindingList.cs

Inicializuje novou instanci BindingList<T> třídy se zadaným seznamem.

public:
 BindingList(System::Collections::Generic::IList<T> ^ list);
public BindingList (System.Collections.Generic.IList<T> list);
new System.ComponentModel.BindingList<'T> : System.Collections.Generic.IList<'T> -> System.ComponentModel.BindingList<'T>
Public Sub New (list As IList(Of T))

Parametry

list
IList<T>

An IList<T> položek, které mají být obsaženy BindingList<T>v souboru .

Poznámky

BindingList<T> Tato možnost slouží k vytvoření BindingList<T> zařízení, které je podporováno nástrojem list, což zajistí, aby se list změny v souboru projevilyBindingList<T>.

Následující tabulka obsahuje počáteční hodnoty vlastností pro instanci BindingList<T> třídy.

Vlastnost Počáteční hodnota
AllowEdit true
AllowNew truepokud typ seznamu má konstruktor bez parametrů; v opačném případě . false
AllowRemove true
RaiseListChangedEvents true

Viz také

Platí pro