Share via


InjectedInputGamepadInfo.Buttons Property

Definition

Gets or sets the gamepad buttons used for input injection.

public:
 property GamepadButtons Buttons { GamepadButtons get(); void set(GamepadButtons value); };
GamepadButtons Buttons();

void Buttons(GamepadButtons value);
public GamepadButtons Buttons { get; set; }
var gamepadButtons = injectedInputGamepadInfo.buttons;
injectedInputGamepadInfo.buttons = gamepadButtons;
Public Property Buttons As GamepadButtons

Property Value

One or more gamepad buttons used for input injection.

Examples

Here are some downloadable samples demonstrating basic input and input injection:

Remarks

Important

The APIs in this namespace require the inputInjectionBrokered restricted capability.

Using input injection requires the following be added to the Package.appxmanifest:

  • To <Package>
    • xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
    • IgnorableNamespaces="rescap"
  • To <Capabilities>
    • <rescap:Capability Name="inputInjectionBrokered" />

Applies to

See also