次の方法で共有


UIKeyboard.Notifications.ObserveDidShow メソッド

定義

オーバーロード

ObserveDidShow(EventHandler<UIKeyboardEventArgs>)

定数に対して DidShowNotification 厳密に型指定された通知。

ObserveDidShow(NSObject, EventHandler<UIKeyboardEventArgs>)

定数に対して DidShowNotification 厳密に型指定された通知。

ObserveDidShow(EventHandler<UIKeyboardEventArgs>)

定数に対して DidShowNotification 厳密に型指定された通知。

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

パラメーター

handler
EventHandler<UIKeyboardEventArgs>

通知が投稿されたときに呼び出すメソッド。

戻り値

通知を破棄するか、またはに渡すことによって通知の受信を停止するために使用できるトークン オブジェクト RemoveObservers(IEnumerable<NSObject>)

注釈

次の例は、コードでこのメソッドを使用する方法を示しています

//
// Lambda style
//

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

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

適用対象

ObserveDidShow(NSObject, EventHandler<UIKeyboardEventArgs>)

定数に対して DidShowNotification 厳密に型指定された通知。

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

パラメーター

objectToObserve
NSObject

観察するオブジェクト。

handler
EventHandler<UIKeyboardEventArgs>

通知が投稿されたときに呼び出すメソッド。

戻り値

通知を破棄するか、またはに渡すことによって通知の受信を停止するために使用できるトークン オブジェクト RemoveObservers(IEnumerable<NSObject>)

注釈

このメソッドは、通知を DidShowNotification サブスクライブするために使用できます。

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

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

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

適用対象