UI オートメーション プロバイダからのイベントの発生
更新 : 2007 年 11 月
このトピックのコード例では、UI オートメーション プロバイダからイベントを発生させる方法を示します。
使用例
次の例では、カスタム ボタン コントロールの実装によって UI オートメーション イベントが発生します。この実装により、UI オートメーション クライアント アプリケーションでボタンのクリックをシミュレートできるようになります。
この例では、不要な処理を避けるために、ClientsAreListening をチェックすることにより、イベントを発生させる必要があるかどうかを確認しています。
''' <summary>
''' Responds to a button click, regardless of whether it was caused by a
''' mouse or keyboard click or by InvokePattern.Invoke.
''' </summary>
Private Sub OnCustomButtonClicked()
'' TODO Perform program actions invoked by the control.
'' Raise an event.
If AutomationInteropProvider.ClientsAreListening Then
Dim args As AutomationEventArgs = _
New AutomationEventArgs(InvokePatternIdentifiers.InvokedEvent)
AutomationInteropProvider.RaiseAutomationEvent( _
InvokePatternIdentifiers.InvokedEvent, Me, args)
End If
End Sub
/// <summary>
/// Responds to a button click, regardless of whether it was caused by a mouse or
/// keyboard click or by InvokePattern.Invoke.
/// </summary>
private void OnCustomButtonClicked()
{
// TODO Perform program actions invoked by the control.
// Raise an event.
if (AutomationInteropProvider.ClientsAreListening)
{
AutomationEventArgs args = new AutomationEventArgs(InvokePatternIdentifiers.InvokedEvent);
AutomationInteropProvider.RaiseAutomationEvent(InvokePatternIdentifiers.InvokedEvent, this, args);
}
}