BindingSource.ListChanged Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando a lista subjacente muda ou um item na lista é alterado.
public:
virtual event System::ComponentModel::ListChangedEventHandler ^ ListChanged;
public event System.ComponentModel.ListChangedEventHandler ListChanged;
public event System.ComponentModel.ListChangedEventHandler? ListChanged;
member this.ListChanged : System.ComponentModel.ListChangedEventHandler
Public Custom Event ListChanged As ListChangedEventHandler
Tipo de evento
Implementações
Exemplos
O exemplo de código a seguir demonstra como lidar com o ListChanged evento do BindingSource componente para detectar quando a BindingSource lista subjacente do componente é alterada.
// This event handler detects changes in the BindingSource
// list or changes to items within the list.
void customersBindingSource_ListChanged(
Object^ /*sender*/,
ListChangedEventArgs^ e )
{
status->Text = e->ListChangedType.ToString();
}
// This event handler detects changes in the BindingSource
// list or changes to items within the list.
void customersBindingSource_ListChanged(
object sender,
ListChangedEventArgs e)
{
status.Text = e.ListChangedType.ToString();
}
' This event handler detects changes in the BindingSource
' list or changes to items within the list.
Private Sub customersBindingSource_ListChanged(ByVal sender As Object, _
ByVal e As ListChangedEventArgs) Handles customersBindingSource.ListChanged
status.Text = e.ListChangedType.ToString()
End Sub
Comentários
O ListChanged evento ocorre quando há uma alteração na associação ou nos metadados da lista subjacente representada pela List propriedade . Por exemplo, esse evento é gerado quando os itens são adicionados, removidos ou movidos ou as DataSource propriedades ou DataMember são alteradas. Os valores das Sort propriedades e Filter persistirão quando esse evento ocorrer.
Esse evento pode ser completamente suprimido definindo a RaiseListChangedEvents propriedade false
como . Para obter mais informações sobre como lidar com eventos, consulte Manipulando e gerando eventos.