Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 1.44 KB

webviewcontrol_lostfocus.md

File metadata and controls

41 lines (29 loc) · 1.44 KB
-api-id -api-type ms.custom
E:Windows.Web.UI.Interop.WebViewControl.LostFocus
winrt event
RS5

Windows.Web.UI.Interop.WebViewControl.LostFocus

-description

Informs your app when the WebViewControl loses focus. May be initiated by the user clicking inside/outside the WebViewControl or by a programmatic focus change, such as the app calling SetFocus on a window that is not the WebViewControl or a MoveFocus method call.

-remarks

-see-also

-examples

The following C# sample demonstrates an event using GotFocus and LostFocus with the 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

The GotFocus and LostFocus event tell the app when WebViewControl receives or loses focus. This could be due to a call to MoveFocus, or due to the user clicking inside/outside the WebViewControl.