BindingManagerBase.CurrentChanged Evento

Definição

Ocorre quando o item associado no momento é alterado.

public event EventHandler CurrentChanged;

Tipo de evento

Exemplos

O exemplo de código a seguir imprime o valor do Current objeto em um BindingManagerBase no CurrentChanged evento. O exemplo pressupõe que a fonte de dados seja uma DataTable que contém um DataColumn chamado CustName.

private void Current_Changed(object sender, EventArgs e)
{
    BindingManagerBase bm = (BindingManagerBase) sender;
    /* Check the type of the Current object. If it is not a 
    DataRowView, exit the method. */
    if(bm.Current.GetType() != typeof(DataRowView)) return;

    // Otherwise, print the value of the column named "CustName".
    DataRowView drv = (DataRowView) bm.Current;
    Console.Write("CurrentChanged): ");
    Console.Write(drv["CustName"]);
    Console.WriteLine();
}

Comentários

O CurrentChanged evento é gerado sempre que a Current propriedade é alterada ou o CurrentItemChanged evento ocorre.

Para obter mais informações sobre como lidar com eventos, consulte Manipulando e levantando eventos.

Aplica-se a

Produto Versões
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

Confira também