ListControl.FormatInfoChanged イベント

定義

FormatInfo プロパティの値が変化したときに発生します。

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 

イベントの種類

属性

次のコード例では、このメンバーの使用方法を示します。 この例では、イベント ハンドラーがイベントの FormatInfoChanged 発生を報告します。 このレポートは、イベントが発生したタイミングを知るのに役立ち、デバッグに役立ちます。 複数のイベントまたは頻繁に発生するイベントを報告するには、 を Console.WriteLine に置き換えるかMessageBox.Show、複数行TextBoxにメッセージを追加することを検討してください。

コード例を実行するには、 や ListBoxなどComboBox、 からListControl継承する型のインスタンスを含むプロジェクトに貼り付けます。 次に、インスタンス ListControl1 に名前を付け、イベント ハンドラーがイベントに FormatInfoChanged 関連付けられていることを確認します。

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

注釈

イベントの処理の詳細については、「処理とイベントの発生」を参照してください。

適用対象