/// <summary>
 /// Opens the DevTools window for the current document in the WebView.
 /// Does nothing if called when the DevTools window is already open
 /// </summary>
 public void OpenDevToolsWindow()
 {
     if (_webView2WebView == null)
     {
         return;
     }
     _webView2WebView.OpenDevToolsWindow();
 }