BindingList<T>.AllowEdit Proprietà

Definizione

Ottiene o imposta un valore che indica se è possibile modificare gli elementi dell'elenco.

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

Valore della proprietà

true se è possibile modificare gli elementi dell'elenco; in caso contrario, false. Il valore predefinito è true.

Esempio

Nell'esempio di codice seguente viene illustrato come impostare la AllowEdit proprietà. Per l'esempio completo, vedere l'argomento panoramica della BindingList<T> classe.

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

Commenti

La AllowEdit proprietà viene in genere usata da altri componenti per determinare se la modifica di elementi nell'elenco è consentita. Quando AllowEdit viene impostato su un nuovo valore, si verificherà un ListChanged evento di tipo Reset .

Si applica a

Vedi anche