UIKeyboard.Notifications.ObserveWillHide Método

Definición

Sobrecargas

ObserveWillHide(EventHandler<UIKeyboardEventArgs>)

Notificación fuertemente tipada para la WillHideNotification constante.

ObserveWillHide(NSObject, EventHandler<UIKeyboardEventArgs>)

Notificación fuertemente tipada para la WillHideNotification constante.

ObserveWillHide(EventHandler<UIKeyboardEventArgs>)

Notificación fuertemente tipada para la WillHideNotification constante.

public static Foundation.NSObject ObserveWillHide (EventHandler<UIKit.UIKeyboardEventArgs> handler);
static member ObserveWillHide : EventHandler<UIKit.UIKeyboardEventArgs> -> Foundation.NSObject

Parámetros

handler
EventHandler<UIKeyboardEventArgs>

Método para invocar cuando se publica la notificación.

Devoluciones

Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo 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 = UIKeyboard.Notifications.ObserveWillHide ((sender, args) => {
    /* Access strongly typed args */
    Console.WriteLine ("Notification: {0}", args.Notification);

    Console.WriteLine ("FrameBegin", args.FrameBegin);
    Console.WriteLine ("FrameEnd", args.FrameEnd);
    Console.WriteLine ("AnimationDuration", args.AnimationDuration);
    Console.WriteLine ("AnimationCurve", args.AnimationCurve);
});

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

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

    Console.WriteLine ("FrameBegin", args.FrameBegin);
    Console.WriteLine ("FrameEnd", args.FrameEnd);
    Console.WriteLine ("AnimationDuration", args.AnimationDuration);
    Console.WriteLine ("AnimationCurve", args.AnimationCurve);
}

void Setup ()
{
    notification = UIKeyboard.Notifications.ObserveWillHide (Callback);
}

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

Se aplica a

ObserveWillHide(NSObject, EventHandler<UIKeyboardEventArgs>)

Notificación fuertemente tipada para la WillHideNotification constante.

public static Foundation.NSObject ObserveWillHide (Foundation.NSObject objectToObserve, EventHandler<UIKit.UIKeyboardEventArgs> handler);
static member ObserveWillHide : Foundation.NSObject * EventHandler<UIKit.UIKeyboardEventArgs> -> Foundation.NSObject

Parámetros

objectToObserve
NSObject

Objeto que se va a observar.

handler
EventHandler<UIKeyboardEventArgs>

Método para invocar cuando se publica la notificación.

Devoluciones

Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo a RemoveObservers(IEnumerable<NSObject>)

Comentarios

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

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

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

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

Se aplica a