DataGridView.RowMinimumHeightChanged É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 lorsque la valeur de la propriété MinimumHeight d’une ligne est modifiée.
public:
event System::Windows::Forms::DataGridViewRowEventHandler ^ RowMinimumHeightChanged;
public event System.Windows.Forms.DataGridViewRowEventHandler RowMinimumHeightChanged;
public event System.Windows.Forms.DataGridViewRowEventHandler? RowMinimumHeightChanged;
member this.RowMinimumHeightChanged : System.Windows.Forms.DataGridViewRowEventHandler
Public Custom Event RowMinimumHeightChanged As DataGridViewRowEventHandler
Type d'événement
Exemples
L’exemple de code suivant illustre l’utilisation de ce membre. Dans l’exemple, un gestionnaire d’événements signale l’occurrence de l’événement RowMinimumHeightChanged . Ce rapport vous aide à savoir quand l’événement se produit et peut vous aider à déboguer. Pour signaler plusieurs événements ou événements qui se produisent fréquemment, envisagez de MessageBox.ShowConsole.WriteLine remplacer par ou d’ajouter le message à un multiligne TextBox.
Pour exécuter l’exemple de code, collez-le dans un projet qui contient un instance de type DataGridView nommé DataGridView1
. Vérifiez ensuite que le gestionnaire d’événements est associé à l’événement RowMinimumHeightChanged .
private void DataGridView1_RowMinimumHeightChanged(Object sender, DataGridViewRowEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "Row", e.Row );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "RowMinimumHeightChanged Event" );
}
Private Sub DataGridView1_RowMinimumHeightChanged(sender as Object, e as DataGridViewRowEventArgs) _
Handles DataGridView1.RowMinimumHeightChanged
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "Row", e.Row)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"RowMinimumHeightChanged Event")
End Sub
Remarques
Pour plus d’informations sur la façon de gérer les événements, consultez gestion et déclenchement d’événements.