Hyperlink.LostFocus Evento

Definizione

Si verifica quando un collegamento ipertestuale perde lo stato attivo.

// Register
event_token LostFocus(RoutedEventHandler const& handler) const;

// Revoke with event_token
void LostFocus(event_token const* cookie) const;

// Revoke with event_revoker
Hyperlink::LostFocus_revoker LostFocus(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler LostFocus;
function onLostFocus(eventArgs) { /* Your code */ }
hyperlink.addEventListener("lostfocus", onLostFocus);
hyperlink.removeEventListener("lostfocus", onLostFocus);
- or -
hyperlink.onlostfocus = onLostFocus;
Public Custom Event LostFocus As RoutedEventHandler 
<Hyperlink LostFocus="eventhandler"/>

Tipo evento

Requisiti Windows

Famiglia di dispositivi
Windows 10 Creators Update (è stato introdotto in 10.0.15063.0)
API contract
Windows.Foundation.UniversalApiContract (è stato introdotto in v4.0)

Commenti

Per altre info, vedi UIElement.LostFocus

Si applica a

Vedi anche