Bagikan melalui


UIPopoverBackgroundView.GetAppearance Metode

Definisi

Overload

GetAppearance(UITraitCollection)

Mengembalikan proksi tampilan untuk yang ditentukan traits.

GetAppearance(UITraitCollection, Type[])

Mengembalikan proksi tampilan untuk yang ditentukan traits saat ditemukan dalam containers hierarki penahanan.

GetAppearance<T>()

Mendapatkan proksi UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance tampilan untuk subkelas UIPopoverBackgroundView.

GetAppearance<T>(UITraitCollection)

Mendapatkan proksi UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance tampilan untuk subkelas UIPopoverBackgroundView.

GetAppearance<T>(UITraitCollection, Type[])

Mendapatkan proksi UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance tampilan untuk subkelas UIPopoverBackgroundView yang memiliki koleksi sifat yang ditentukan saat tampilan dihosting dalam hierarki yang ditentukan.

GetAppearance(UITraitCollection)

Mengembalikan proksi tampilan untuk yang ditentukan traits.

public static UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance GetAppearance (UIKit.UITraitCollection traits);
static member GetAppearance : UIKit.UITraitCollection -> UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance

Parameter

Mengembalikan

Berlaku untuk

GetAppearance(UITraitCollection, Type[])

Mengembalikan proksi tampilan untuk yang ditentukan traits saat ditemukan dalam containers hierarki penahanan.

public static UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance GetAppearance (UIKit.UITraitCollection traits, params Type[] containers);
static member GetAppearance : UIKit.UITraitCollection * Type[] -> UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance

Parameter

containers
Type[]

Mengembalikan

Berlaku untuk

GetAppearance<T>()

Mendapatkan proksi UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance tampilan untuk subkelas UIPopoverBackgroundView.

public static UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance GetAppearance<T> () where T : UIKit.UIPopoverBackgroundView;
static member GetAppearance : unit -> UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance (requires 'T :> UIKit.UIPopoverBackgroundView)

Jenis parameter

T

Jenis di mana proksi UIAppearance harus dikembalikan. Ini adalah subkelas UIPopoverBackgroundView.

Mengembalikan

objek proksi tampilan untuk jenis yang ditentukan.

Keterangan

Mengatur properti tampilan apa pun pada objek yang dikembalikan akan memengaruhi tampilan semua kelas dan subkelas parameter jenis.

Appearance Tidak seperti properti , atau AppearanceWhenContainedIn(Type[]) metode yang hanya berfungsi pada instans kelas khusus ini, proksi yang dikembalikan oleh GetAppearance dapat digunakan untuk mengubah gaya subkelas.

Contoh berikut menunjukkan cara kerja metode GetAppearance

var myTheme = UIPopoverBackgroundView.GetAppearance<MyUIPopoverBackgroundViewSubclass> ();
myTheme.TintColor = UIColor.Red;

Untuk informasi lainnya, lihat dokumentasi untuk metode UIAppearance.

Berlaku untuk

GetAppearance<T>(UITraitCollection)

Mendapatkan proksi UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance tampilan untuk subkelas UIPopoverBackgroundView.

public static UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance GetAppearance<T> (UIKit.UITraitCollection traits) where T : UIKit.UIPopoverBackgroundView;
static member GetAppearance : UIKit.UITraitCollection -> UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance (requires 'T :> UIKit.UIPopoverBackgroundView)

Jenis parameter

T

Jenis di mana proksi UIAppearance harus dikembalikan. Ini adalah subkelas UIPopoverBackgroundView.

Parameter

traits
UITraitCollection

Koleksi sifat untuk dicocokkan.

Mengembalikan

objek proksi tampilan untuk jenis yang ditentukan.

Keterangan

Objek yang dikembalikan mewakili proksi UIAppearance di mana pengembang dapat mengatur properti tampilan untuk instans UIPopoverBackgroundView.

Appearance Tidak seperti properti , atau AppearanceWhenContainedIn(Type[]) metode yang hanya berfungsi pada instans kelas khusus ini, proksi yang dikembalikan oleh GetAppearance dapat digunakan untuk mengubah gaya subkelas.

Contoh berikut menunjukkan cara kerja metode GetAppearance

var myTheme = UIPopoverBackgroundView.GetAppearance<MyUIPopoverBackgroundViewSubclass> (myTraits, );
myTheme.TintColor = UIColor.Red;

Untuk informasi lainnya, lihat dokumentasi untuk metode UIAppearance.

Berlaku untuk

GetAppearance<T>(UITraitCollection, Type[])

Mendapatkan proksi UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance tampilan untuk subkelas UIPopoverBackgroundView yang memiliki koleksi sifat yang ditentukan saat tampilan dihosting dalam hierarki yang ditentukan.

public static UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance GetAppearance<T> (UIKit.UITraitCollection traits, params Type[] containers) where T : UIKit.UIPopoverBackgroundView;
static member GetAppearance : UIKit.UITraitCollection * Type[] -> UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance (requires 'T :> UIKit.UIPopoverBackgroundView)

Jenis parameter

T

Jenis di mana proksi UIAppearance harus dikembalikan. Ini adalah subkelas UIPopoverBackgroundView.

Parameter

traits
UITraitCollection

Koleksi sifat untuk dicocokkan.

containers
Type[]

Daftar jenis yang ingin dimiliki pengembang sebagai kontainer untuk menerapkan tampilan khusus ini.

Mengembalikan

objek proksi tampilan untuk jenis yang ditentukan.

Keterangan

Objek yang dikembalikan mewakili proksi UIAppearance di mana pengembang dapat mengatur properti tampilan untuk instans UIPopoverBackgroundView yang memiliki koleksi sifat yang ditentukan saat tampilan dihosting dalam hierarki yang ditentukan ketika instans tersebut terkandung dalam hierarki yang ditentukan oleh containers parameter .

Appearance Tidak seperti properti , atau AppearanceWhenContainedIn(Type[]) metode yang hanya berfungsi pada instans kelas khusus ini, proksi yang dikembalikan oleh GetAppearance dapat digunakan untuk mengubah gaya subkelas.

Contoh berikut menunjukkan cara kerja metode GetAppearance

var myTheme = UIPopoverBackgroundView.GetAppearance<MyUIPopoverBackgroundViewSubclass> (myTraits, typeof (UINavigationBar), typeof (UIPopoverController));
myTheme.TintColor = UIColor.Red;

Untuk informasi lainnya, lihat dokumentasi untuk metode UIAppearance.

Berlaku untuk