Hi,
what's the best practice for applying new BrowserOptions to a WebView? At runtime I'd like to change the following:
Code: C#
Runtime.ExtraCommandLineArgs = "--touch-events=disabled";
to
Code: C#
Runtime.ExtraCommandLineArgs = "";
Changing during runtime seems to have no effect. Is there a best way to restart a WebView object? Manually tearing the XAML down and reinject a new WebControl and WebView seems to be too much of a hassle.
Kind regards