BindingList<T>.AllowEdit Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece un valor que indica si se pueden editar elementos de la lista.
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
Valor de propiedad
true si se pueden editar elementos de lista; de lo contrario, false. El valor predeterminado es true.
Ejemplos
En el ejemplo de código siguiente se muestra cómo establecer la AllowEdit propiedad . Para obtener el ejemplo completo, consulte el tema de información general de la BindingList<T> clase.
// 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
Comentarios
Otros componentes suelen usar la AllowEdit propiedad para determinar si se permite la edición de elementos de la lista. Cuando AllowEdit se establece en un nuevo valor, se producirá un ListChanged evento de tipo Reset .