ListControl.FormatInfoChanged É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é FormatInfo change.
public:
event EventHandler ^ FormatInfoChanged;
[System.ComponentModel.Browsable(false)]
public event EventHandler FormatInfoChanged;
[System.ComponentModel.Browsable(false)]
public event EventHandler? FormatInfoChanged;
[<System.ComponentModel.Browsable(false)>]
member this.FormatInfoChanged : EventHandler
Public Custom Event FormatInfoChanged As EventHandler
Type d'événement
- Attributs
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 FormatInfoChanged . 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 d’un type qui hérite de ListControl, tel qu’un ComboBox ou ListBox. Nommez ensuite le instance ListControl1
et vérifiez que le gestionnaire d’événements est associé à l’événementFormatInfoChanged.
private void ListControl1_FormatInfoChanged(Object sender, EventArgs e) {
MessageBox.Show("You are in the ListControl.FormatInfoChanged event.");
}
Private Sub ListControl1_FormatInfoChanged(sender as Object, e as EventArgs) _
Handles ListControl1.FormatInfoChanged
MessageBox.Show("You are in the ListControl.FormatInfoChanged event.")
End Sub
Remarques
Pour plus d'informations sur la gestion des événements, voir gestion et déclenchement d’événements.