DataGrid.DataSourceChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit quand la valeur de propriété DataSource a été modifiée.
public:
event EventHandler ^ DataSourceChanged;
public event EventHandler DataSourceChanged;
member this.DataSourceChanged : EventHandler
Public Custom Event DataSourceChanged As EventHandler
Type d'événement
Exemples
L’exemple de code suivant illustre l’utilisation de ce membre.
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
Remarques
L’événement DataSourceChanged se produit lorsque la DataMember valeur change ou lorsque le BindingContext des DataGrid modifications.
S’applique à
Voir aussi
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.