UserControl.AutoValidateChanged イベント

定義

AutoValidate プロパティが変更されたときに発生します。

public:
 event EventHandler ^ AutoValidateChanged;
[System.ComponentModel.Browsable(true)]
public event EventHandler AutoValidateChanged;
[System.ComponentModel.Browsable(true)]
public event EventHandler? AutoValidateChanged;
[<System.ComponentModel.Browsable(true)>]
member this.AutoValidateChanged : EventHandler 
Public Custom Event AutoValidateChanged As EventHandler 

イベントの種類

属性

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

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

private void UserControl1_AutoValidateChanged(Object sender, EventArgs e) {

   MessageBox.Show("You are in the UserControl.AutoValidateChanged event.");
}
Private Sub UserControl1_AutoValidateChanged(sender as Object, e as EventArgs) _ 
     Handles UserControl1.AutoValidateChanged

   MessageBox.Show("You are in the UserControl.AutoValidateChanged event.")

End Sub

注釈

カスタム コントロールが独自の検証を実行する場合は、コントロールを使用する開発者がプロパティをいつ変更したかを AutoValidate 把握し、それに応じてコントロールの検証動作を変更できるようにする必要があります。

適用対象

こちらもご覧ください