简体   繁体   中英

CefSharp old version issue gives notice of upgrade your browser on every website

i have created a chromium following online tutorials

    using CefSharp;
    using CefSharp.Internals;
    using CefSharp.WinForms;
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }
    public CefSharp.WinForms.ChromiumWebBrowser browser;

    private void label1_Click(object sender, EventArgs e)
    {

        MessageBox.Show(Cef.ChromiumVersion);  

        browser = new CefSharp.WinForms.ChromiumWebBrowser("google.com")
        {
            Dock = DockStyle.Fill,
            Size = new Size(600, 600),
            Location = new Point(200, 200),
        };
        this.panel1.Controls.Add(browser);
    }
}

Every thing is working fine but it shows version 43.0.2357.130

when ever i go to any website it show update notice like google.com trello.com etc etc

Please Guide me how to upgrade latest version of my custom browser

You need to upgrade you visual studio to 2019 you need to install NuGet Package Manger and search for cefsharp it auto installs every thing

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM