Compartir a través de


UITextInputMode.Notifications.ObserveCurrentInputModeDidChange Método

Definición

Sobrecargas

ObserveCurrentInputModeDidChange(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la CurrentInputModeDidChangeNotification constante.

ObserveCurrentInputModeDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la CurrentInputModeDidChangeNotification constante.

ObserveCurrentInputModeDidChange(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la CurrentInputModeDidChangeNotification constante.

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

Parámetros

handler
EventHandler<NSNotificationEventArgs>

Método que se invoca cuando se publica la notificación.

Devoluciones

Objeto token que se puede usar para dejar de recibir notificaciones mediante su eliminación o su paso a RemoveObservers(IEnumerable<NSObject>)

Comentarios

En el ejemplo siguiente se muestra cómo puede usar este método en el código.

//
// Lambda style
//

// listening
notification = UITextInputMode.Notifications.ObserveCurrentInputModeDidChange ((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 = UITextInputMode.Notifications.ObserveCurrentInputModeDidChange (Callback);
}

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

Se aplica a

ObserveCurrentInputModeDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la CurrentInputModeDidChangeNotification constante.

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

Parámetros

objectToObserve
NSObject

Objeto que se va a observar.

handler
EventHandler<NSNotificationEventArgs>

Método que se invoca cuando se publica la notificación.

Devoluciones

Objeto token que se puede usar para dejar de recibir notificaciones mediante su eliminación o su paso a RemoveObservers(IEnumerable<NSObject>)

Comentarios

Este método se puede usar para suscribirse CurrentInputModeDidChangeNotification a las notificaciones.

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

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

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

Se aplica a