Share via


UIMenuController.Notifications Class

Definition

Notifications posted by the UIMenuController class.

public static class UIMenuController.Notifications
type UIMenuController.Notifications = class
Inheritance
UIMenuController.Notifications

Remarks

This class contains various helper methods that allow developers to observe events posted in the notification hub (NSNotificationCenter).

The methods defined in this class post events that invoke the provided method or lambda with a NSNotificationEventArgs parameter, which contains strongly typed properties for the notification arguments.

Methods

Name Description
ObserveDidHideMenu(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidHideMenuNotification constant.

ObserveDidHideMenu(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidHideMenuNotification constant.

ObserveDidShowMenu(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidShowMenuNotification constant.

ObserveDidShowMenu(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidShowMenuNotification constant.

ObserveMenuFrameDidChange(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the MenuFrameDidChangeNotification constant.

ObserveMenuFrameDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the MenuFrameDidChangeNotification constant.

ObserveWillHideMenu(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillHideMenuNotification constant.

ObserveWillHideMenu(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillHideMenuNotification constant.

ObserveWillShowMenu(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillShowMenuNotification constant.

ObserveWillShowMenu(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillShowMenuNotification constant.

Applies to