FlightStick.HeadsetConnected 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當頭戴式裝置附加至飛行杆時發出訊號。
// Register
event_token HeadsetConnected(TypedEventHandler<IGameController, Headset const&> const& handler) const;
// Revoke with event_token
void HeadsetConnected(event_token const* cookie) const;
// Revoke with event_revoker
FlightStick::HeadsetConnected_revoker HeadsetConnected(auto_revoke_t, TypedEventHandler<IGameController, Headset const&> const& handler) const;
public event TypedEventHandler<IGameController,Headset> HeadsetConnected;
function onHeadsetConnected(eventArgs) { /* Your code */ }
flightStick.addEventListener("headsetconnected", onHeadsetConnected);
flightStick.removeEventListener("headsetconnected", onHeadsetConnected);
- or -
flightStick.onheadsetconnected = onHeadsetConnected;
Public Custom Event HeadsetConnected As TypedEventHandler(Of IGameController, Headset) Implements HeadsetConnected
事件類型
實作
範例
下列範例示範如何註冊此事件的處理常式。
#include <winrt/Windows.Gaming.Input.h>
using namespace winrt;
using namespace Windows::Gaming::Input;
...
FlightStick m_flightStick{ nullptr }; // Need to initialize this to a **FlightStick** that's connected to the device.
...
m_flightStick.HeadsetConnected([this](IGameController const& /* sender */, Headset const& /* args */)
{
// Enable headset capture and playback on this device.
});
`flightStick` is a **FlightStick** that's connected to the device.
flightStick.HeadsetConnected += ref new TypedEventHandler<IGameController^, Headset^>(
[] (IGameController^ device, Headset^ headset)
{
// Enable headset capture and playback on this device.
});
備註
如需偵測、追蹤和使用頭戴式裝置的詳細資訊,請參閱 頭戴式裝置。