AltitudeAngelWings.ApiClient.CodeProvider.WpfAuthorizeDisplay.WpfAuthorizeDisplay C# (CSharp) Méthode

WpfAuthorizeDisplay() public méthode

Constructor. Ensure this is called from the UI thread.
public WpfAuthorizeDisplay ( ) : System
Résultat System
        public WpfAuthorizeDisplay()
        {
            Width = 800;
            Height = 600;

            _webBrowser = new WebBrowser();
            _webBrowser.Navigating += WebBrowserOnNavigating;
            Content = new Grid { Children = { _webBrowser } };
        }