UINavigationController.UINavigationControllerRemoved Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Segnala quando un controller di spostamento dell'interfaccia utente viene disconnesso.
// Register
static event_token UINavigationControllerRemoved(EventHandler<UINavigationController> const& handler) const;
// Revoke with event_token
static void UINavigationControllerRemoved(event_token const* cookie) const;
// Revoke with event_revoker
static UINavigationController::UINavigationControllerRemoved_revoker UINavigationControllerRemoved(auto_revoke_t, EventHandler<UINavigationController> const& handler) const;
public static event System.EventHandler<UINavigationController> UINavigationControllerRemoved;
function onUINavigationControllerRemoved(eventArgs) { /* Your code */ }
Windows.Gaming.Input.UINavigationController.addEventListener("uinavigationcontrollerremoved", onUINavigationControllerRemoved);
Windows.Gaming.Input.UINavigationController.removeEventListener("uinavigationcontrollerremoved", onUINavigationControllerRemoved);
- or -
Windows.Gaming.Input.UINavigationController.onuinavigationcontrollerremoved = onUINavigationControllerRemoved;
Public Shared Custom Event UINavigationControllerRemoved As EventHandler(Of UINavigationController)