UICollectionReusableView.GetAppearance 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetAppearance(UITraitCollection) |
傳回指定 |
GetAppearance(UITraitCollection, Type[]) |
傳回在內含專案階層中找到 |
GetAppearance<T>() |
取得 UICollectionReusableView 子類別的外觀 Proxy UICollectionReusableView.UICollectionReusableViewAppearance 。 |
GetAppearance<T>(UITraitCollection) |
取得 UICollectionReusableView 子類別的外觀 Proxy UICollectionReusableView.UICollectionReusableViewAppearance 。 |
GetAppearance<T>(UITraitCollection, Type[]) |
取得 UICollectionReusableView 子類別的外觀 Proxy UICollectionReusableView.UICollectionReusableViewAppearance ,該子類別在檢視裝載于指定的階層中時具有指定的特徵集合。 |
GetAppearance(UITraitCollection)
傳回指定 traits
之 的外觀 Proxy。
public static UIKit.UICollectionReusableView.UICollectionReusableViewAppearance GetAppearance (UIKit.UITraitCollection traits);
static member GetAppearance : UIKit.UITraitCollection -> UIKit.UICollectionReusableView.UICollectionReusableViewAppearance
參數
- traits
- UITraitCollection
傳回
適用於
GetAppearance(UITraitCollection, Type[])
傳回在內含專案階層中找到 containers
時所指定 traits
的外觀 Proxy。
public static UIKit.UICollectionReusableView.UICollectionReusableViewAppearance GetAppearance (UIKit.UITraitCollection traits, params Type[] containers);
static member GetAppearance : UIKit.UITraitCollection * Type[] -> UIKit.UICollectionReusableView.UICollectionReusableViewAppearance
參數
- traits
- UITraitCollection
- containers
- Type[]
傳回
適用於
GetAppearance<T>()
取得 UICollectionReusableView 子類別的外觀 Proxy UICollectionReusableView.UICollectionReusableViewAppearance 。
public static UIKit.UICollectionReusableView.UICollectionReusableViewAppearance GetAppearance<T> () where T : UIKit.UICollectionReusableView;
static member GetAppearance : unit -> UIKit.UICollectionReusableView.UICollectionReusableViewAppearance (requires 'T :> UIKit.UICollectionReusableView)
類型參數
- T
必須傳回 UIAppearance Proxy 的類型。 這是 UICollectionReusableView 的子類別。
傳回
指定型別的外觀 Proxy 物件。
備註
在傳回的物件上設定任何外觀屬性會影響類型參數的所有類別和子類別的外觀。
Appearance不同于屬性,或 AppearanceWhenContainedIn(Type[]) 只適用于這個特定類別實例的方法,GetAppearance 所傳回的 Proxy 可用來變更子類別的樣式。
下列範例顯示 GetAppearance 方法的運作方式
var myTheme = UICollectionReusableView.GetAppearance<MyUICollectionReusableViewSubclass> ();
myTheme.TintColor = UIColor.Red;
如需詳細資訊,請參閱 類別 UIAppearance 的檔。
適用於
GetAppearance<T>(UITraitCollection)
取得 UICollectionReusableView 子類別的外觀 Proxy UICollectionReusableView.UICollectionReusableViewAppearance 。
public static UIKit.UICollectionReusableView.UICollectionReusableViewAppearance GetAppearance<T> (UIKit.UITraitCollection traits) where T : UIKit.UICollectionReusableView;
static member GetAppearance : UIKit.UITraitCollection -> UIKit.UICollectionReusableView.UICollectionReusableViewAppearance (requires 'T :> UIKit.UICollectionReusableView)
類型參數
- T
必須傳回 UIAppearance Proxy 的類型。 這是 UICollectionReusableView 的子類別。
參數
- traits
- UITraitCollection
要比對的特徵集合。
傳回
指定型別的外觀 Proxy 物件。
備註
傳回的物件代表 UIAppearance Proxy,開發人員可以在其中設定 UICollectionReusableView 實例的外觀屬性。
Appearance不同于屬性,或 AppearanceWhenContainedIn(Type[]) 只適用于這個特定類別實例的方法,GetAppearance 所傳回的 Proxy 可用來變更子類別的樣式。
下列範例顯示 GetAppearance 方法的運作方式
var myTheme = UICollectionReusableView.GetAppearance<MyUICollectionReusableViewSubclass> (myTraits, );
myTheme.TintColor = UIColor.Red;
如需詳細資訊,請參閱 類別 UIAppearance 的檔。
適用於
GetAppearance<T>(UITraitCollection, Type[])
取得 UICollectionReusableView 子類別的外觀 Proxy UICollectionReusableView.UICollectionReusableViewAppearance ,該子類別在檢視裝載于指定的階層中時具有指定的特徵集合。
public static UIKit.UICollectionReusableView.UICollectionReusableViewAppearance GetAppearance<T> (UIKit.UITraitCollection traits, params Type[] containers) where T : UIKit.UICollectionReusableView;
static member GetAppearance : UIKit.UITraitCollection * Type[] -> UIKit.UICollectionReusableView.UICollectionReusableViewAppearance (requires 'T :> UIKit.UICollectionReusableView)
類型參數
- T
必須傳回 UIAppearance Proxy 的類型。 這是 UICollectionReusableView 的子類別。
參數
- traits
- UITraitCollection
要比對的特徵集合。
- containers
- Type[]
開發人員想要作為容器來套用此特定外觀的類型清單。
傳回
指定型別的外觀 Proxy 物件。
備註
傳回的物件代表 UIAppearance Proxy,當這些實例包含在 參數所指定的階層 containers
中時,開發人員可以設定 UICollectionReusableView 實例的外觀屬性,該實例具有指定的特徵集合。
Appearance不同于屬性,或 AppearanceWhenContainedIn(Type[]) 只適用于這個特定類別實例的方法,GetAppearance 所傳回的 Proxy 可用來變更子類別的樣式。
下列範例顯示 GetAppearance 方法的運作方式
var myTheme = UICollectionReusableView.GetAppearance<MyUICollectionReusableViewSubclass> (myTraits, typeof (UINavigationBar), typeof (UIPopoverController));
myTheme.TintColor = UIColor.Red;
如需詳細資訊,請參閱 類別 UIAppearance 的檔。