WPF integration

You have some options…

  • The Auth0ClientOptions has a Browser property. By default an instance of PlatformWebView gets passed to this. The PlatformWebView constructor has an overload which takes a windowFactory parameter]3.

    So what you can do is to create a new instance of PlatformWebViewbut specify your own windowFactory which instantiates a maximized window. And then set that instance as the value for the Browser property.

  • The second alternative is to implement your own IBrowser class which displays the browser window exactly the way you want to, and then pass an instance of that in the Browser property.