RadialControllerConfiguration.AppController Property

Definition

Gets or sets whether the RadialController object is bound to the main application process rather than a specific app view (or top-level window).

If AppController is set, that radial controller (and menu) is used for the top-level window and all views in the application process (overriding any individual view controllers you have defined).

Note

You must also set IsAppControllerEnabled to true.

public:
 static property RadialController ^ AppController { RadialController ^ get(); void set(RadialController ^ value); };
static RadialController AppController();

static void AppController(RadialController value);
public static RadialController AppController { get; set; }
var radialController = RadialControllerConfiguration.appController;
RadialControllerConfiguration.appController = radialController;
Public Shared Property AppController As RadialController

Property Value

The RadialController object to bind to the active application.

Windows requirements

Device family
Windows 10 Fall Creators Update (introduced in 10.0.16299.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v5.0)

Remarks

We recommend creating an app controller in the Loaded handler of your app's main page (or equivalent).

Applies to

See also