Hyperlink.GotFocus Событие

Определение

Происходит, когда гиперссылка получает фокус.

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

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

// Revoke with event_revoker
Hyperlink::GotFocus_revoker GotFocus(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler GotFocus;
function onGotFocus(eventArgs) { /* Your code */ }
hyperlink.addEventListener("gotfocus", onGotFocus);
hyperlink.removeEventListener("gotfocus", onGotFocus);
- or -
hyperlink.ongotfocus = onGotFocus;
Public Custom Event GotFocus As RoutedEventHandler 
<Hyperlink GotFocus="eventhandler"/>

Тип события

Комментарии

Дополнительные сведения см. в разделе UIElement.GotFocus.

Применяется к

См. также раздел