PropertyGrid.PropertyTabChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
プロパティ タブが変更されたときに発生します。
public:
event System::Windows::Forms::PropertyTabChangedEventHandler ^ PropertyTabChanged;
public event System.Windows.Forms.PropertyTabChangedEventHandler PropertyTabChanged;
member this.PropertyTabChanged : System.Windows.Forms.PropertyTabChangedEventHandler
Public Custom Event PropertyTabChanged As PropertyTabChangedEventHandler
イベントの種類
例
次のコード例は、このメンバーの使用方法を示しています。 この例では、イベント ハンドラーは、 PropertyTabChanged イベントの発生を報告します。 このレポートは、イベントがいつ発生するかを学習するのに役立ち、デバッグに役立ちます。 複数のイベントや頻繁に発生するイベントについて報告するには、 MessageBox.Show を Console.WriteLine に置き換えるか、メッセージを複数行の TextBoxに追加することを検討してください。
コード例を実行するには、PropertyGridという名前の型のインスタンスを含むプロジェクトPropertyGrid1貼り付けます。 次に、イベント ハンドラーが PropertyTabChanged イベントに関連付けられていることを確認します。
private void PropertyGrid1_PropertyTabChanged(Object sender, PropertyTabChangedEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "OldTab", e.OldTab );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "NewTab", e.NewTab );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "PropertyTabChanged Event" );
}
Private Sub PropertyGrid1_PropertyTabChanged(sender as Object, e as PropertyTabChangedEventArgs) _
Handles PropertyGrid1.PropertyTabChanged
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "OldTab", e.OldTab)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "NewTab", e.NewTab)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"PropertyTabChanged Event")
End Sub
注釈
イベントの処理の詳細については、「処理とイベントの発生」を参照してください。