BindingList<T> 构造函数

定义

初始化 BindingList<T> 类的新实例。

重载

BindingList<T>()

使用默认值初始化 BindingList<T> 类的新实例。

BindingList<T>(IList<T>)

使用指定列表初始化 BindingList<T> 类的新实例。

BindingList<T>()

Source:
BindingList.cs
Source:
BindingList.cs
Source:
BindingList.cs

使用默认值初始化 BindingList<T> 类的新实例。

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

示例

下面的代码示例演示如何构造新的 BindingList<T>。 有关完整示例,请参阅 BindingList<T> 类概述主题。

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

注解

下表显示 BindingList<T> 类的实例的初始属性值。

属性 初始值
AllowEdit true
AllowNew true 如果列表类型具有无参数构造函数,则为 ;否则为 false
AllowRemove true
RaiseListChangedEvents true

另请参阅

适用于

BindingList<T>(IList<T>)

Source:
BindingList.cs
Source:
BindingList.cs
Source:
BindingList.cs

使用指定列表初始化 BindingList<T> 类的新实例。

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

参数

list
IList<T>

要包含在 IList<T> 中的项的 BindingList<T>

注解

使用此方法 BindingList<T> 创建 BindingList<T>list提供支持的 ,这可确保对 的更改 list 反映在 中 BindingList<T>

下表显示 BindingList<T> 类的实例的初始属性值。

属性 初始值
AllowEdit true
AllowNew true 如果列表类型具有无参数构造函数,则为 ;否则为 false
AllowRemove true
RaiseListChangedEvents true

另请参阅

适用于