Share via


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"/>

이벤트 유형

Windows 요구 사항

디바이스 패밀리
Windows 10 Creators Update (10.0.15063.0에서 도입되었습니다.)
API contract
Windows.Foundation.UniversalApiContract (v4.0에서 도입되었습니다.)

설명

자세한 내용은 UIElement.GotFocus를 참조하세요.

적용 대상

추가 정보