UIView.Notifications.ObserveGrayscaleStatusDidChange Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Overload
ObserveGrayscaleStatusDidChange(EventHandler<NSNotificationEventArgs>) |
Pemberitahuan yang ditik dengan kuat untuk GrayscaleStatusDidChangeNotification konstanta. |
ObserveGrayscaleStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Pemberitahuan yang ditik dengan kuat untuk GrayscaleStatusDidChangeNotification konstanta. |
ObserveGrayscaleStatusDidChange(EventHandler<NSNotificationEventArgs>)
Pemberitahuan yang ditik dengan kuat untuk GrayscaleStatusDidChangeNotification konstanta.
public static Foundation.NSObject ObserveGrayscaleStatusDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveGrayscaleStatusDidChange : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parameter
- handler
- EventHandler<NSNotificationEventArgs>
Metode untuk memanggil saat pemberitahuan diposting.
Mengembalikan
Objek token yang dapat digunakan untuk berhenti menerima pemberitahuan dengan membuangnya atau meneruskannya ke RemoveObservers(IEnumerable<NSObject>)
Keterangan
Metode ini dapat digunakan untuk berlangganan GrayscaleStatusDidChangeNotification pemberitahuan.
// Listen to all notifications posted for any object
var token = UIView.Notifications.ObserveGrayscaleStatusDidChange ((notification) => {
Console.WriteLine ("Observed GrayscaleStatusDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = UIView.Notifications.ObserveGrayscaleStatusDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed GrayscaleStatusDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Berlaku untuk
ObserveGrayscaleStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>)
Pemberitahuan yang ditik dengan kuat untuk GrayscaleStatusDidChangeNotification konstanta.
public static Foundation.NSObject ObserveGrayscaleStatusDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveGrayscaleStatusDidChange : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parameter
- objectToObserve
- NSObject
Objek yang akan diamati.
- handler
- EventHandler<NSNotificationEventArgs>
Metode untuk memanggil saat pemberitahuan diposting.
Mengembalikan
Objek token yang dapat digunakan untuk berhenti menerima pemberitahuan dengan membuangnya atau meneruskannya ke RemoveObservers(IEnumerable<NSObject>)
Keterangan
Metode ini dapat digunakan untuk berlangganan GrayscaleStatusDidChangeNotification pemberitahuan.
// Listen to all notifications posted for any object
var token = UIView.Notifications.ObserveGrayscaleStatusDidChange ((notification) => {
Console.WriteLine ("Observed GrayscaleStatusDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = UIView.Notifications.ObserveGrayscaleStatusDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed GrayscaleStatusDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();