DataGridView.RowValidated É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 après la validation d’une ligne.
public:
event System::Windows::Forms::DataGridViewCellEventHandler ^ RowValidated;
public event System.Windows.Forms.DataGridViewCellEventHandler RowValidated;
public event System.Windows.Forms.DataGridViewCellEventHandler? RowValidated;
member this.RowValidated : System.Windows.Forms.DataGridViewCellEventHandler
Public Custom Event RowValidated As DataGridViewCellEventHandler
Type d'événement
Exemples
L’exemple de code suivant utilise cet événement pour effacer les annotations d’erreur qui peuvent avoir été laissées après la validation de la ligne.
private void RemoveAnnotations(Object sender,
DataGridViewCellEventArgs args)
{
foreach (DataGridViewCell cell in
songsDataGridView.Rows[args.RowIndex].Cells)
{
cell.ErrorText = String.Empty;
}
foreach (DataGridViewRow row in songsDataGridView.Rows)
{
row.ErrorText = String.Empty;
}
}
Private Sub RemoveAnnotations(ByVal sender As Object, _
ByVal args As DataGridViewCellEventArgs) _
Handles songsDataGridView.RowValidated
For Each cell As DataGridViewCell In _
songsDataGridView.Rows(args.RowIndex).Cells
cell.ErrorText = String.Empty
Next
For Each row As DataGridViewRow In songsDataGridView.Rows
row.ErrorText = String.Empty
Next
End Sub
Remarques
Cet événement est analogue à l’événement Validated . Utilisez cet événement pour effectuer un post-traitement sur une ligne de valeurs.
Pour plus d’informations sur la façon de gérer les événements, consultez gestion et déclenchement d’événements.