Bagikan melalui


WebViewControl.GotFocus Kejadian

Definisi

Menginformasikan aplikasi Anda saat WebViewControl menerima fokus (karena pengguna mengklik dalam/di luar WebViewControl). Gunakan dalam kombinasi dengan peristiwa LostFocus dan perubahan fokus terprogram menggunakan metode WebViewControl.MoveFocus .

// Register
event_token GotFocus(TypedEventHandler<WebViewControl, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
WebViewControl::GotFocus_revoker GotFocus(auto_revoke_t, TypedEventHandler<WebViewControl, IInspectable const&> const& handler) const;
public event TypedEventHandler<WebViewControl,object> GotFocus;
function onGotFocus(eventArgs) { /* Your code */ }
webViewControl.addEventListener("gotfocus", onGotFocus);
webViewControl.removeEventListener("gotfocus", onGotFocus);
- or -
webViewControl.ongotfocus = onGotFocus;
Public Custom Event GotFocus As TypedEventHandler(Of WebViewControl, Object) 

Jenis Acara

Persyaratan Windows

Rangkaian perangkat
Windows 10, version 1809 (diperkenalkan dalam 10.0.17763.0)
API contract
Windows.Foundation.UniversalApiContract (diperkenalkan dalam v7.0)

Contoh

Sampel C# berikut menunjukkan peristiwa menggunakan GotFocus dan LostFocus dengan WebViewControl:

WebViewControl webViewControl; 

void WebViewControlGotFocus(WebViewControl sender, IInspectable args) 
{ 
    AddFocusHighlightToElement(sender); 
} 

void WebViewControlLostFocus(WebViewControl sender, IInspectable args) 
{ 
    RemoveFocusHighlightFromElement(sender); 
} 

webViewControl.GotFocus += WebViewControlGotFocus; 
webViewControl.LostFocus += WebViewControlLostFocus

Peristiwa GotFocus dan LostFocus memberi tahu aplikasi saat WebViewControl menerima atau kehilangan fokus. Ini bisa disebabkan oleh panggilan ke MoveFocus, atau karena pengguna mengklik di dalam/di luar WebViewControl.

Berlaku untuk