ListControl.FormatInfoChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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
注釈
イベントの処理の詳細については、「処理とイベントの発生」を参照してください。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET