Share via


NSComboBox.Notifications Class

Definition

Notifications posted by the NSComboBox class.

public static class NSComboBox.Notifications
type NSComboBox.Notifications = class
Inheritance
NSComboBox.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
ObserveSelectionDidChange(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the SelectionDidChangeNotification constant.

ObserveSelectionDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the SelectionDidChangeNotification constant.

ObserveSelectionIsChanging(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the SelectionIsChangingNotification constant.

ObserveSelectionIsChanging(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the SelectionIsChangingNotification constant.

ObserveWillDismiss(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillDismissNotification constant.

ObserveWillDismiss(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillDismissNotification constant.

ObserveWillPopUp(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillPopUpNotification constant.

ObserveWillPopUp(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillPopUpNotification constant.

Applies to