/// <summary>
 /// Tell the browser to acquire/release focus.
 /// </summary>
 public void SetFocus(bool isFocused)
 {
     if (IsBrowserInitialized)
     {
         managedCefBrowserAdapter.SetFocus(isFocused);
     }
 }
 /// <summary>
 /// Set whether the browser is focused.
 /// </summary>
 public void SetFocus(bool isFocused)
 {
     managedCefBrowserAdapter.SetFocus(isFocused);
 }
Exemple #3
0
        /// <summary>
        /// Tell the browser to acquire/release focus.
        /// </summary>
        public void SetFocus(bool isFocused)
        {
            this.ThrowExceptionIfBrowserNotInitialized();

            managedCefBrowserAdapter.SetFocus(isFocused);
        }