UITableViewCell.GetAppearance 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GetAppearance(UITraitCollection) |
返回指定 |
GetAppearance(UITraitCollection, Type[]) |
在包含层次结构中找到 |
GetAppearance<T>(UITraitCollection, Type[]) |
当视图托管在指定的层次结构中时,获取具有指定特征集合的 UITableViewCell 子类的外观代理 UITableViewCell.UITableViewCellAppearance 。 |
GetAppearance<T>(UITraitCollection) |
获取 UITableViewCell 子类的外观代理 UITableViewCell.UITableViewCellAppearance 。 |
GetAppearance<T>() |
获取 UITableViewCell 子类的外观代理 UITableViewCell.UITableViewCellAppearance 。 |
GetAppearance(UITraitCollection)
返回指定 traits
的外观代理。
public static UIKit.UITableViewCell.UITableViewCellAppearance GetAppearance (UIKit.UITraitCollection traits);
static member GetAppearance : UIKit.UITraitCollection -> UIKit.UITableViewCell.UITableViewCellAppearance
参数
- traits
- UITraitCollection
返回
适用于
GetAppearance(UITraitCollection, Type[])
在包含层次结构中找到containers
时,返回指定的 traits
的外观代理。
public static UIKit.UITableViewCell.UITableViewCellAppearance GetAppearance (UIKit.UITraitCollection traits, params Type[] containers);
static member GetAppearance : UIKit.UITraitCollection * Type[] -> UIKit.UITableViewCell.UITableViewCellAppearance
参数
- traits
- UITraitCollection
- containers
- Type[]
返回
适用于
GetAppearance<T>(UITraitCollection, Type[])
当视图托管在指定的层次结构中时,获取具有指定特征集合的 UITableViewCell 子类的外观代理 UITableViewCell.UITableViewCellAppearance 。
public static UIKit.UITableViewCell.UITableViewCellAppearance GetAppearance<T> (UIKit.UITraitCollection traits, params Type[] containers) where T : UIKit.UITableViewCell;
static member GetAppearance : UIKit.UITraitCollection * Type[] -> UIKit.UITableViewCell.UITableViewCellAppearance (requires 'T :> UIKit.UITableViewCell)
类型参数
- T
必须为其返回 UIAppearance 代理的类型。 这是 UITableViewCell 的子类。
参数
- traits
- UITraitCollection
要匹配的特征集合。
- containers
- Type[]
开发人员希望用作应用此特定外观的容器的类型列表。
返回
指定类型的外观代理对象。
注解
返回的对象表示 UIAppearance 代理,当视图托管在指定层次结构中时,当这些实例包含在 参数指定的层次结构中时,开发人员可以在该代理中设置具有指定特征集合的 containers
UITableViewCell 实例的外观属性。
Appearance与 属性或AppearanceWhenContainedIn(Type[])方法(仅适用于此特定类的实例)不同,GetAppearance 返回的代理可用于更改子类的样式。
以下示例演示 GetAppearance 方法的工作原理
var myTheme = UITableViewCell.GetAppearance<MyUITableViewCellSubclass> (myTraits, typeof (UINavigationBar), typeof (UIPopoverController));
myTheme.TintColor = UIColor.Red;
有关详细信息,请参阅 UIAppearance 类的文档。
适用于
GetAppearance<T>(UITraitCollection)
获取 UITableViewCell 子类的外观代理 UITableViewCell.UITableViewCellAppearance 。
public static UIKit.UITableViewCell.UITableViewCellAppearance GetAppearance<T> (UIKit.UITraitCollection traits) where T : UIKit.UITableViewCell;
static member GetAppearance : UIKit.UITraitCollection -> UIKit.UITableViewCell.UITableViewCellAppearance (requires 'T :> UIKit.UITableViewCell)
类型参数
- T
必须为其返回 UIAppearance 代理的类型。 这是 UITableViewCell 的子类。
参数
- traits
- UITraitCollection
要匹配的特征集合。
返回
指定类型的外观代理对象。
注解
返回的对象表示 UIAppearance 代理,开发人员可在其中为 UITableViewCell 的实例设置外观属性。
Appearance与 属性或AppearanceWhenContainedIn(Type[])方法(仅适用于此特定类的实例)不同,GetAppearance 返回的代理可用于更改子类的样式。
以下示例演示 GetAppearance 方法的工作原理
var myTheme = UITableViewCell.GetAppearance<MyUITableViewCellSubclass> (myTraits, );
myTheme.TintColor = UIColor.Red;
有关详细信息,请参阅 UIAppearance 类的文档。
适用于
GetAppearance<T>()
获取 UITableViewCell 子类的外观代理 UITableViewCell.UITableViewCellAppearance 。
public static UIKit.UITableViewCell.UITableViewCellAppearance GetAppearance<T> () where T : UIKit.UITableViewCell;
static member GetAppearance : unit -> UIKit.UITableViewCell.UITableViewCellAppearance (requires 'T :> UIKit.UITableViewCell)
类型参数
- T
必须为其返回 UIAppearance 代理的类型。 这是 UITableViewCell 的子类。
返回
指定类型的外观代理对象。
注解
对返回的对象设置任何外观属性将影响类型参数的所有类和子类的外观。
Appearance与 属性或AppearanceWhenContainedIn(Type[])方法(仅适用于此特定类的实例)不同,GetAppearance 返回的代理可用于更改子类的样式。
以下示例演示 GetAppearance 方法的工作原理
var myTheme = UITableViewCell.GetAppearance<MyUITableViewCellSubclass> ();
myTheme.TintColor = UIColor.Red;
有关详细信息,请参阅 UIAppearance 类的文档。