UIKeyboard.Notifications.ObserveWillHide Método

Definição

Sobrecargas

ObserveWillHide(EventHandler<UIKeyboardEventArgs>)

Notificação fortemente tipada para a WillHideNotification constante.

ObserveWillHide(NSObject, EventHandler<UIKeyboardEventArgs>)

Notificação fortemente tipada para a WillHideNotification constante.

ObserveWillHide(EventHandler<UIKeyboardEventArgs>)

Notificação fortemente tipada para a 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 a ser invocado quando a notificação é postada.

Retornos

Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)

Comentários

O exemplo a seguir mostra como você pode usar esse método em seu 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 ();
}

Aplica-se a

ObserveWillHide(NSObject, EventHandler<UIKeyboardEventArgs>)

Notificação fortemente tipada para a 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

O objeto a ser observado.

handler
EventHandler<UIKeyboardEventArgs>

Método a ser invocado quando a notificação é postada.

Retornos

Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)

Comentários

Esse método pode ser usado para assinar WillHideNotification notificações.

// 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 ();

Aplica-se a