RadialControllerConfiguration.IsAppControllerEnabled Property

Definition

Gets or sets whether the RadialController object is enabled as an AppController and controller events can be handled by your app.

public:
 static property bool IsAppControllerEnabled { bool get(); void set(bool value); };
static bool IsAppControllerEnabled();

static void IsAppControllerEnabled(bool value);
public static bool IsAppControllerEnabled { get; set; }
var boolean = RadialControllerConfiguration.isAppControllerEnabled;
RadialControllerConfiguration.isAppControllerEnabled = boolean;
Public Shared Property IsAppControllerEnabled As Boolean

Property Value

Boolean

bool

true if enabled. Otherwise, false. The default is false.

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

If AppController is set, that radial controller (and menu) is used for all top-level windows in the application process (all individual view controllers are overridden).

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

Applies to

See also