ListControl.FormattingEnabledChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando il valore della proprietà FormattingEnabled cambia.
public:
event EventHandler ^ FormattingEnabledChanged;
public event EventHandler FormattingEnabledChanged;
public event EventHandler? FormattingEnabledChanged;
member this.FormattingEnabledChanged : EventHandler
Public Custom Event FormattingEnabledChanged As EventHandler
Tipo evento
Esempio
Nell'esempio di codice seguente viene illustrato l'uso di questo membro. Nell'esempio un gestore eventi segnala l'occorrenza dell'evento FormattingEnabledChanged . Questo report consente di apprendere quando si verifica l'evento e può essere utile per il debug. Per segnalare più eventi o eventi che si verificano di frequente, provare a sostituire MessageBox.Show o Console.WriteLine accodare il messaggio a un oggetto multilinea TextBox.
Per eseguire il codice di esempio, incollarlo in un progetto contenente un'istanza di un tipo che eredita da ListControl, ad esempio un ComboBox oggetto o ListBox. Assegnare quindi un nome all'istanza ListControl1
e verificare che il gestore eventi sia associato all'evento FormattingEnabledChanged .
private void ListControl1_FormattingEnabledChanged(Object sender, EventArgs e) {
MessageBox.Show("You are in the ListControl.FormattingEnabledChanged event.");
}
Private Sub ListControl1_FormattingEnabledChanged(sender as Object, e as EventArgs) _
Handles ListControl1.FormattingEnabledChanged
MessageBox.Show("You are in the ListControl.FormattingEnabledChanged event.")
End Sub
Commenti
Per ulteriori informazioni sulla gestione degli eventi, consultare gestione e generazione di eventi.