RawGameController.RawGameControllerRemoved イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
未加工のゲーム コントローラーが切断されたときに通知します。
// Register
static event_token RawGameControllerRemoved(EventHandler<RawGameController> const& handler) const;
// Revoke with event_token
static void RawGameControllerRemoved(event_token const* cookie) const;
// Revoke with event_revoker
static RawGameController::RawGameControllerRemoved_revoker RawGameControllerRemoved(auto_revoke_t, EventHandler<RawGameController> const& handler) const;
public static event System.EventHandler<RawGameController> RawGameControllerRemoved;
function onRawGameControllerRemoved(eventArgs) { /* Your code */ }
Windows.Gaming.Input.RawGameController.addEventListener("rawgamecontrollerremoved", onRawGameControllerRemoved);
Windows.Gaming.Input.RawGameController.removeEventListener("rawgamecontrollerremoved", onRawGameControllerRemoved);
- or -
Windows.Gaming.Input.RawGameController.onrawgamecontrollerremoved = onRawGameControllerRemoved;
Public Shared Custom Event RawGameControllerRemoved As EventHandler(Of RawGameController)
イベントの種類
注釈
次の例では、削除された未加工のゲーム コントローラーの追跡を停止します。
#include <algorithm>
#include <winrt/Windows.Gaming.Input.h>
using namespace winrt;
using namespace Windows::Gaming::Input;
...
std::vector<RawGameController> m_myRawGameControllers;
...
RawGameController::RawGameControllerRemoved([this](IInspectable const& /* sender */, RawGameController const& args)
{
std::remove(m_myRawGameControllers.begin(), m_myRawGameControllers.end(), args);
});
// `myRawGameControllers` is a `Vector<RawGameController^>` that contains the raw game controllers that your game is tracking.
RawGameController::RawGameControllerRemoved +=
ref new EventHandler<RawGameController^>(
[] (Platform::Object^, RawGameController^ args)
{
unsigned int indexRemoved;
if (myRawGameControllers->IndexOf(args, &indexRemoved))
{
myRawGameControllers->RemoveAt(indexRemoved);
}
});