次の方法で共有


BindingList<T>.AllowRemove プロパティ

定義

コレクションから項目を削除できるかどうかを示す値を取得または設定します。

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

プロパティ値

true RemoveItem(Int32)メソッドを使用してリストから項目を削除できる場合は、false。 既定値は、true です。

次のコード例では、 AllowRemove プロパティを設定する方法を示します。 完全な例については、 BindingList<T> クラスの概要に関するトピックを参照してください。

// Declare a new BindingListOfT with the Part business object.
BindingList<Part> listOfParts;
void InitializeListOfParts()
{
    // Create the new BindingList of Part type.
    listOfParts = new BindingList<Part>
    {
        // Allow new parts to be added, but not removed once committed.        
        AllowNew = true,
        AllowRemove = false,

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

        // Do not allow parts to be edited.
        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

注釈

AllowRemove プロパティは、通常、項目の削除が許可されているかどうかを判断するために、他のコンポーネントによって使用されます。

AllowRemoveが新しい値に設定されると、Reset型のListChanged イベントが発生します。

適用対象

こちらもご覧ください