BindingList<T>.RaiseListChangedEvents プロパティ

定義

リストの項目を追加または削除すると ListChanged イベントが発生するかどうかを示す値を取得または設定します。

public:
 property bool RaiseListChangedEvents { bool get(); void set(bool value); };
public bool RaiseListChangedEvents { get; set; }
member this.RaiseListChangedEvents : bool with get, set
Public Property RaiseListChangedEvents As Boolean

プロパティ値

項目を追加または削除すると ListChanged イベントが発生する場合は true。それ以外の場合は false。 既定値は、true です。

次のコード例では、 メソッドの使用方法を RaiseListChangedEvents 示します。 完全な例については、クラスの概要に関するトピックを 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

注釈

リストでイベントがRaiseListChangedEvents発生しないようにするListChanged場合は、 プロパティfalseを に設定します。

適用対象