DataGridView.CellToolTipTextChanged É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 la propriété ToolTipText est modifiée pour une cellule dans le DataGridView.
public:
event System::Windows::Forms::DataGridViewCellEventHandler ^ CellToolTipTextChanged;
public event System.Windows.Forms.DataGridViewCellEventHandler CellToolTipTextChanged;
public event System.Windows.Forms.DataGridViewCellEventHandler? CellToolTipTextChanged;
member this.CellToolTipTextChanged : System.Windows.Forms.DataGridViewCellEventHandler
Public Custom Event CellToolTipTextChanged As DataGridViewCellEventHandler
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 CellToolTipTextChanged . 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 CellToolTipTextChanged .
private void DataGridView1_CellToolTipTextChanged(Object sender, DataGridViewCellEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "ColumnIndex", e.ColumnIndex );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "RowIndex", e.RowIndex );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "CellToolTipTextChanged Event" );
}
Private Sub DataGridView1_CellToolTipTextChanged(sender as Object, e as DataGridViewCellEventArgs) _
Handles DataGridView1.CellToolTipTextChanged
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "ColumnIndex", e.ColumnIndex)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "RowIndex", e.RowIndex)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"CellToolTipTextChanged 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.