Поделиться через


WKInterfaceObject.Notifications.ObserveUnfocusedElementKey Метод

Определение

Перегрузки

ObserveUnfocusedElementKey(EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы P:WatchKit.WKInterfaceObject.UnfocusedElementKeyNotification .

ObserveUnfocusedElementKey(NSObject, EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы P:WatchKit.WKInterfaceObject.UnfocusedElementKeyNotification .

ObserveUnfocusedElementKey(EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы P:WatchKit.WKInterfaceObject.UnfocusedElementKeyNotification .

public static Foundation.NSObject ObserveUnfocusedElementKey (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveUnfocusedElementKey : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Параметры

handler
EventHandler<NSNotificationEventArgs>

Метод, вызываемый при публикации уведомления.

Возвращаемое значение

Объект токена, который можно использовать для прекращения получения уведомлений путем удаления или передачи в RemoveObservers(IEnumerable<NSObject>)

Комментарии

Этот метод можно использовать для подписки на уведомления P:WatchKit.WKInterfaceObject.UnfocusedElementKeyNotification .

// Listen to all notifications posted for any object
var token = WKInterfaceObject.Notifications.ObserveUnfocusedElementKey ((notification) => {
	Console.WriteLine ("Observed UnfocusedElementKeyNotification!");
};

// Listen to all notifications posted for a single object
var token = WKInterfaceObject.Notifications.ObserveUnfocusedElementKey (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed UnfocusedElementKeyNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

Применяется к

ObserveUnfocusedElementKey(NSObject, EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы P:WatchKit.WKInterfaceObject.UnfocusedElementKeyNotification .

public static Foundation.NSObject ObserveUnfocusedElementKey (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveUnfocusedElementKey : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Параметры

objectToObserve
NSObject

Объект для наблюдения.

handler
EventHandler<NSNotificationEventArgs>

Метод, вызываемый при публикации уведомления.

Возвращаемое значение

Объект токена, который можно использовать для прекращения получения уведомлений путем удаления или передачи в RemoveObservers(IEnumerable<NSObject>)

Комментарии

Этот метод можно использовать для подписки на уведомления P:WatchKit.WKInterfaceObject.UnfocusedElementKeyNotification .

// Listen to all notifications posted for any object
var token = WKInterfaceObject.Notifications.ObserveUnfocusedElementKey ((notification) => {
	Console.WriteLine ("Observed UnfocusedElementKeyNotification!");
};

// Listen to all notifications posted for a single object
var token = WKInterfaceObject.Notifications.ObserveUnfocusedElementKey (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed UnfocusedElementKeyNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

Применяется к