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