Gamepad.GamepadAdded 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當新的遊戲台連線時發出訊號。
// Register
static event_token GamepadAdded(EventHandler<Gamepad> const& handler) const;
// Revoke with event_token
static void GamepadAdded(event_token const* cookie) const;
// Revoke with event_revoker
static Gamepad::GamepadAdded_revoker GamepadAdded(auto_revoke_t, EventHandler<Gamepad> const& handler) const;
public static event System.EventHandler<Gamepad> GamepadAdded;
function onGamepadAdded(eventArgs) { /* Your code */ }
Windows.Gaming.Input.Gamepad.addEventListener("gamepadadded", onGamepadAdded);
Windows.Gaming.Input.Gamepad.removeEventListener("gamepadadded", onGamepadAdded);
- or -
Windows.Gaming.Input.Gamepad.ongamepadadded = onGamepadAdded;
Public Shared Custom Event GamepadAdded As EventHandler(Of Gamepad)
事件類型
備註
若要識別已新增的控制器,您可以使用 Gamepad.Gamepads查詢已連線的控制器清單。