PropertyValueChangedEventArgs クラス

定義

PropertyValueChangedPropertyGrid イベントのデータを提供します。

public ref class PropertyValueChangedEventArgs : EventArgs
[System.Runtime.InteropServices.ComVisible(true)]
public class PropertyValueChangedEventArgs : EventArgs
public class PropertyValueChangedEventArgs : EventArgs
[<System.Runtime.InteropServices.ComVisible(true)>]
type PropertyValueChangedEventArgs = class
    inherit EventArgs
type PropertyValueChangedEventArgs = class
    inherit EventArgs
Public Class PropertyValueChangedEventArgs
Inherits EventArgs
継承
PropertyValueChangedEventArgs
属性

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

コード例を実行するには、名前付きのPropertyGrid1PropertyGridのインスタンスを含むプロジェクトに貼り付けます。 次に、イベント ハンドラーがイベントに関連付けられていることを確認します PropertyValueChanged

private void PropertyGrid1_PropertyValueChanged(Object sender, PropertyValueChangedEventArgs e) {

System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "ChangedItem", e.ChangedItem );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "OldValue", e.OldValue );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "PropertyValueChanged Event" );
}
Private Sub PropertyGrid1_PropertyValueChanged(sender as Object, e as PropertyValueChangedEventArgs) _ 
     Handles PropertyGrid1.PropertyValueChanged

    Dim messageBoxVB as New System.Text.StringBuilder()
    messageBoxVB.AppendFormat("{0} = {1}", "ChangedItem", e.ChangedItem)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "OldValue", e.OldValue)
    messageBoxVB.AppendLine()
    MessageBox.Show(messageBoxVB.ToString(),"PropertyValueChanged Event")

End Sub

注釈

このイベントはPropertyValueChanged、ユーザーがプロパティGridItemPropertyGridの値を変更したときに発生します。

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

コンストラクター

PropertyValueChangedEventArgs(GridItem, Object)

PropertyValueChangedEventArgs クラスの新しいインスタンスを初期化します。

プロパティ

ChangedItem

変更された GridItem を取得します。

OldValue

変更される前のグリッド項目の値。

メソッド

Equals(Object)

指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)

適用対象