I've got a DotNetBrowser instance defined in a XAML file
<Grid>
<wpf:WPFBrowserView x:Name="BrowserView"></wpf:WPFBrowserView>
</Grid>
The application is used by multiple people, which is causing issues due to the issue discussed here:
Chromium profile directory is already used/locked by another browser
Is it possible to use XAML to define the browser control and still assign a custom context to the browser instance?
No, I am afraid it's not.
The
Browser
property of theWPFBrowserView
class doesn't have a public setter so you must create the customBrowser
and theBrowserContext
programmatically:XAML doesn't support anything like calling
BrowserFactory.Create(context1)
.