LostFocusEventManager.AddHandler 方法

定义

添加指定的事件处理程序,当指定的源引发 LostFocusLostFocus 事件时进行调用。

public:
 static void AddHandler(System::Windows::DependencyObject ^ source, EventHandler<System::Windows::RoutedEventArgs ^> ^ handler);
public static void AddHandler (System.Windows.DependencyObject source, EventHandler<System.Windows.RoutedEventArgs> handler);
static member AddHandler : System.Windows.DependencyObject * EventHandler<System.Windows.RoutedEventArgs> -> unit
Public Shared Sub AddHandler (source As DependencyObject, handler As EventHandler(Of RoutedEventArgs))

参数

source
DependencyObject

引发 LostFocusLostFocus 事件的源对象。

handler
EventHandler<RoutedEventArgs>

创建处理 LostFocusLostFocus 事件的委托。

例外

handler 上声明的默认值为 null

注解

使用此方法指定要用于订阅 UIElement.LostFocusContentElement.LostFocus 事件的事件处理程序。 在使用此方法时,您的侦听器对象不需要实现 IWeakEventListener 接口。

适用于