GKTurnBasedMatchmakerViewController.GetAppearance Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| GetAppearance(UITraitCollection) |
Obtains the appearance proxy GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance for GKTurnBasedMatchmakerViewController. |
| GetAppearance(UITraitCollection, Type[]) |
Obtains the appearance proxy GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance for GKTurnBasedMatchmakerViewController. |
| GetAppearance<T>() |
Obtains the appearance proxy GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance for the subclass of GKTurnBasedMatchmakerViewController. |
| GetAppearance<T>(UITraitCollection) |
Obtains the appearance proxy GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance for the subclass of GKTurnBasedMatchmakerViewController. |
| GetAppearance<T>(UITraitCollection, Type[]) |
Obtains the appearance proxy GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance for the subclass of GKTurnBasedMatchmakerViewController. |
GetAppearance(UITraitCollection)
Obtains the appearance proxy GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance for GKTurnBasedMatchmakerViewController.
public static GameKit.GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance GetAppearance(UIKit.UITraitCollection traits);
static member GetAppearance : UIKit.UITraitCollection -> GameKit.GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance
Parameters
- traits
- UITraitCollection
Trait collection to match.
Returns
An appearance proxy object for the specified type.
Remarks
The following example shows how this method works:
var myTraits = new UITraitCollection ();
var myTheme = GKTurnBasedMatchmakerViewController.GetAppearance (myTraits);
myTheme.TintColor = UIColor.Red;
If developers want to control the appearance of subclasses of GKTurnBasedMatchmakerViewController, they should use the GetAppearance<T>(UITraitCollection) method.
For more information, see the documentation for the UIAppearance class.
Applies to
GetAppearance(UITraitCollection, Type[])
Obtains the appearance proxy GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance for GKTurnBasedMatchmakerViewController.
public static GameKit.GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance GetAppearance(UIKit.UITraitCollection traits, params Type[] containers);
static member GetAppearance : UIKit.UITraitCollection * Type[] -> GameKit.GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance
Parameters
- traits
- UITraitCollection
Trait collection to match.
- containers
- Type[]
List of types that the developer wishes to have as the containers to apply this particular appearance.
Returns
An appearance proxy object for the specified type.
Remarks
The following example shows how this method works:
var myTraits = new UITraitCollection ();
var myTheme = GKTurnBasedMatchmakerViewController.GetAppearance (myTraits, typeof (UINavigationBar), typeof (UIPopoverController));
myTheme.TintColor = UIColor.Red;
If developers want to control the appearance of subclasses of GKTurnBasedMatchmakerViewController, they should use the GetAppearance<T>(UITraitCollection, Type[]) method.
For more information, see the documentation for the UIAppearance class.
Applies to
GetAppearance<T>()
Obtains the appearance proxy GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance for the subclass of GKTurnBasedMatchmakerViewController.
public static GameKit.GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance GetAppearance<T>() where T : GameKit.GKTurnBasedMatchmakerViewController;
static member GetAppearance : unit -> GameKit.GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance (requires 'T :> GameKit.GKTurnBasedMatchmakerViewController)
Type Parameters
- T
The type for which the UIAppearance proxy must be returned. This is a subclass of GKTurnBasedMatchmakerViewController.
Returns
An appearance proxy object for the specified type.
Remarks
Setting any appearance properties on the returned object will affect the appearance of all classes and subclasses of the type parameter.
Unlike the Appearance property, or the AppearanceWhenContainedIn(Type[]) method which only work on instances of this particular class, the proxies returned by this method can be used to change the style of subclasses.
The following example shows how this method works:
var myTheme = GKTurnBasedMatchmakerViewController.GetAppearance<MyGKTurnBasedMatchmakerViewControllerSubclass> ();
myTheme.TintColor = UIColor.Red;
For more information, see the documentation for the UIAppearance class.
Applies to
GetAppearance<T>(UITraitCollection)
Obtains the appearance proxy GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance for the subclass of GKTurnBasedMatchmakerViewController.
public static GameKit.GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance GetAppearance<T>(UIKit.UITraitCollection traits) where T : GameKit.GKTurnBasedMatchmakerViewController;
static member GetAppearance : UIKit.UITraitCollection -> GameKit.GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance (requires 'T :> GameKit.GKTurnBasedMatchmakerViewController)
Type Parameters
- T
The type for which the UIAppearance proxy must be returned. This is a subclass of GKTurnBasedMatchmakerViewController.
Parameters
- traits
- UITraitCollection
Trait collection to match.
Returns
An appearance proxy object for the specified type.
Remarks
Setting any appearance properties on the returned object will affect the appearance of all classes and subclasses of the type parameter.
Unlike the Appearance property, or the AppearanceWhenContainedIn(Type[]) method which only work on instances of this particular class, the proxies returned by this method can be used to change the style of subclasses.
The following example shows how this method works:
var myTraits = new UITraitCollection ();
var myTheme = GKTurnBasedMatchmakerViewController.GetAppearance<MyGKTurnBasedMatchmakerViewControllerSubclass> (myTraits);
myTheme.TintColor = UIColor.Red;
For more information, see the documentation for the UIAppearance class.
Applies to
GetAppearance<T>(UITraitCollection, Type[])
Obtains the appearance proxy GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance for the subclass of GKTurnBasedMatchmakerViewController.
public static GameKit.GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance GetAppearance<T>(UIKit.UITraitCollection traits, params Type[] containers) where T : GameKit.GKTurnBasedMatchmakerViewController;
static member GetAppearance : UIKit.UITraitCollection * Type[] -> GameKit.GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance (requires 'T :> GameKit.GKTurnBasedMatchmakerViewController)
Type Parameters
- T
The type for which the UIAppearance proxy must be returned. This is a subclass of GKTurnBasedMatchmakerViewController.
Parameters
- traits
- UITraitCollection
Trait collection to match.
- containers
- Type[]
List of types that the developer wishes to have as the containers to apply this particular appearance.
Returns
An appearance proxy object for the specified type.
Remarks
Setting any appearance properties on the returned object will affect the appearance of all classes and subclasses of the type parameter.
Unlike the Appearance property, or the AppearanceWhenContainedIn(Type[]) method which only work on instances of this particular class, the proxies returned by this method can be used to change the style of subclasses.
The following example shows how this method works:
var myTraits = new UITraitCollection ();
var myTheme = GKTurnBasedMatchmakerViewController.GetAppearance<MyGKTurnBasedMatchmakerViewControllerSubclass> (myTraits, typeof (UINavigationBar), typeof (UIPopoverController));
myTheme.TintColor = UIColor.Red;
For more information, see the documentation for the UIAppearance class.