FlightStick.FlightStickAdded Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sinaliza quando um novo joystick de vôo está conectado.
// Register
static event_token FlightStickAdded(EventHandler<FlightStick> const& handler) const;
// Revoke with event_token
static void FlightStickAdded(event_token const* cookie) const;
// Revoke with event_revoker
static FlightStick::FlightStickAdded_revoker FlightStickAdded(auto_revoke_t, EventHandler<FlightStick> const& handler) const;
public static event System.EventHandler<FlightStick> FlightStickAdded;
function onFlightStickAdded(eventArgs) { /* Your code */ }
Windows.Gaming.Input.FlightStick.addEventListener("flightstickadded", onFlightStickAdded);
Windows.Gaming.Input.FlightStick.removeEventListener("flightstickadded", onFlightStickAdded);
- or -
Windows.Gaming.Input.FlightStick.onflightstickadded = onFlightStickAdded;
Public Shared Custom Event FlightStickAdded As EventHandler(Of FlightStick)
Tipo de evento
Exemplos
O exemplo a seguir inicia o acompanhamento de um joystick de voo que foi adicionado.
#include <winrt/Windows.Gaming.Input.h>
using namespace winrt;
using namespace Windows::Gaming::Input;
...
std::vector<FlightStick> m_myFlightSticks;
...
FlightStick::FlightStickAdded([this](IInspectable const& /* sender */, FlightStick const& args)
{
m_myFlightSticks.push_back(args);
});
FlightStick::FlightStickAdded +=
ref new EventHandler<FlightStick^>([] (Platform::Object^, FlightStick^ args)
{
// This code assumes that you're interested in all new flight sticks.
// `myFlightSticks` is a `Vector<FlightStick^>` that contains the flight sticks that your game is tracking.
myFlightSticks->Append(args);
});
Comentários
Para identificar os joysticks de voo que já foram adicionados, consulte a lista de joysticks de voo conectados usando FlightStick.FlightSticks. No entanto, como você pode estar interessado apenas em alguns dos joysticks de voo conectados, recomendamos que você mantenha sua própria coleção em vez de acessá-las por meio de FlightSticks.