DataGrid.DataSourceChanged 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 o valor da propriedade DataSource é alterado.
public:
event EventHandler ^ DataSourceChanged;
public event EventHandler DataSourceChanged;
member this.DataSourceChanged : EventHandler
Public Custom Event DataSourceChanged As EventHandler
Tipo de evento
Exemplos
O exemplo de código a seguir demonstra o uso desse membro.
private:
System::Windows::Forms::DataGrid^ dataGrid1;
void CreateDataGrid()
{
dataGrid1 = gcnew DataGrid;
// Add the handler for the DataSourceChanged event.
dataGrid1->DataSourceChanged += gcnew EventHandler(
this, &Form1::DataGrid1_DataSourceChanged );
}
void DataGrid1_DataSourceChanged( Object^ sender, EventArgs^ /*e*/ )
{
DataGrid^ thisGrid = dynamic_cast<DataGrid^>(sender);
}
private System.Windows.Forms.DataGrid dataGrid1;
private void CreateDataGrid()
{
dataGrid1 = new DataGrid();
// Add the handler for the DataSourceChanged event.
dataGrid1.DataSourceChanged += new EventHandler(DataGrid1_DataSourceChanged);
}
private void DataGrid1_DataSourceChanged(object sender, EventArgs e)
{
DataGrid thisGrid = (DataGrid) sender;
}
Private dataGrid1 As System.Windows.Forms.DataGrid
Private Sub CreateDataGrid()
dataGrid1 = New DataGrid()
' Add the handler for the DataSourceChanged event.
AddHandler dataGrid1.DataSourceChanged, AddressOf DataGrid1_DataSourceChanged
End Sub
Private Sub DataGrid1_DataSourceChanged(sender As Object, e As EventArgs)
Dim thisGrid As DataGrid = CType(sender, DataGrid)
End Sub
Comentários
O DataSourceChanged evento ocorre quando o DataMember valor é alterado ou quando o BindingContextDataGrid do é alterado.
Aplica-se a
Confira também
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.