Partager via


NSUndoManager.Notifications.ObserveWillRedoChange Méthode

Définition

Surcharges

ObserveWillRedoChange(EventHandler<NSNotificationEventArgs>)

Notification fortement typée pour la WillRedoChangeNotification constante.

ObserveWillRedoChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notification fortement typée pour la WillRedoChangeNotification constante.

ObserveWillRedoChange(EventHandler<NSNotificationEventArgs>)

Notification fortement typée pour la WillRedoChangeNotification constante.

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

Paramètres

handler
EventHandler<NSNotificationEventArgs>

Méthode à appeler lorsque la notification est publiée.

Retours

Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)

Remarques

L’exemple suivant montre comment utiliser cette méthode dans votre code

//
// Lambda style
//

// listening
notification = NSUndoManager.Notifications.ObserveWillRedoChange ((sender, args) => {
    /* Access strongly typed args */
    Console.WriteLine ("Notification: {0}", args.Notification);
});

// To stop listening:
notification.Dispose ();

//
//Method style
//
NSObject notification;
void Callback (object sender, Foundation.NSNotificationEventArgs args)
{
    // Access strongly typed args
    Console.WriteLine ("Notification: {0}", args.Notification);
}

void Setup ()
{
    notification = NSUndoManager.Notifications.ObserveWillRedoChange (Callback);
}

void Teardown ()
{
    notification.Dispose ();
}

S’applique à

ObserveWillRedoChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notification fortement typée pour la WillRedoChangeNotification constante.

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

Paramètres

objectToObserve
NSObject

Objet à observer.

handler
EventHandler<NSNotificationEventArgs>

Méthode à appeler lorsque la notification est publiée.

Retours

Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)

Remarques

Cette méthode peut être utilisée pour WillRedoChangeNotification s’abonner aux notifications.

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

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

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

S’applique à