CefSharp.WinForms won't load pages?

1.1k Views Asked by At

Hello i am trying to load pages on my panel in win Forms but it won't render it? here is my code:

    private GeoCoordinateWatcher watcher = null;
    public ChromiumWebBrowser myBrowser;
    private string _username;
    public MainForm()
    {
        InitializeComponent();
        watcher = new GeoCoordinateWatcher();
        // in order to find vehicle location we must use geocoordinate from System.Device.Location
        watcher.StatusChanged += Watcher_StatusChanged;
        watcher.Start();

        // to use diffrent webbrowser control first we must initialize cef.dll controls 
        Cef.Initialize(new CefSettings());
        myBrowser = new ChromiumWebBrowser("www.google.com");
        this.Controls.Add(myBrowser);
        //webPanel.Controls.Add(myBrowser);
        myBrowser.Dock = DockStyle.Fill;          
    }
0

There are 0 best solutions below