WebViewControl.LostFocus Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Informe votre application lorsque webViewControl perd le focus. L’utilisateur peut cliquer à l’intérieur/à l’extérieur du WebViewControl ou par un changement de focus programmatique, tel que l’application appelant SetFocus sur une fenêtre qui n’est pas l’appel de méthode WebViewControl ou MoveFocus .
// Register
event_token LostFocus(TypedEventHandler<WebViewControl, IInspectable const&> const& handler) const;
// Revoke with event_token
void LostFocus(event_token const* cookie) const;
// Revoke with event_revoker
WebViewControl::LostFocus_revoker LostFocus(auto_revoke_t, TypedEventHandler<WebViewControl, IInspectable const&> const& handler) const;
public event TypedEventHandler<WebViewControl,object> LostFocus;
function onLostFocus(eventArgs) { /* Your code */ }
webViewControl.addEventListener("lostfocus", onLostFocus);
webViewControl.removeEventListener("lostfocus", onLostFocus);
- or -
webViewControl.onlostfocus = onLostFocus;
Public Custom Event LostFocus As TypedEventHandler(Of WebViewControl, Object)
Type d'événement
TypedEventHandler<WebViewControl,IInspectable>
Configuration requise pour Windows
Famille d’appareils |
Windows 10, version 1809 (introduit dans 10.0.17763.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduit dans v7.0)
|
Exemples
L’exemple C# suivant illustre un événement utilisant GotFocus et LostFocus avec 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
Les événements GotFocus et LostFocus indiquent à l’application quand WebViewControl reçoit ou perd le focus. Cela peut être dû à un appel à MoveFocus ou au fait que l’utilisateur clique à l’intérieur/à l’extérieur du WebViewControl.