RadialControllerConfiguration.IsAppControllerEnabled Property
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.
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
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).