zoukankan      html  css  js  c++  java
  • ClickOnce手动更新

                if (ApplicationDeployment.IsNetworkDeployed == true)
                {
                    ApplicationDeployment thisDeployment = ApplicationDeployment.CurrentDeployment;
                    // this.Text = "正在检测更新";
                    this.txt_version.Text = thisDeployment.CurrentVersion.ToString();
                    if (thisDeployment.CheckForUpdate() == true)
                    {
                        thisDeployment.UpdateAsync();
                        thisDeployment.UpdateCompleted += (s, e) =>
                        {
                            if (e.Error == null)
                            {
                                MessageBox.Show("更新完毕,将要重启程序!");
                                Application.Current.Shutdown();
                                System.Windows.Forms.Application.Restart();
                            }
                            else
                            {
                                MessageBox.Show(e.Error.ToString());
                            }
                        };
                        thisDeployment.UpdateProgressChanged += (s, e) =>
                        {
                            string progressText = String.Format("{0:D}K out of {1:D}K downloaded - {2:D}% complete", e.BytesCompleted / 1024, e.BytesTotal / 1024, e.ProgressPercentage);
                            downloadStatus.Text = progressText;
                        };
                    }
                    else
                    {
                        MessageBox.Show("并没有新的版本进行更新!");
                    }
                }
                else
                {
                    MessageBox.Show("这不是网络发布的程序");
                }

    参考文章:

    http://www.cnblogs.com/sucsy/archive/2011/09/23/2186218.html

    http://www.cnblogs.com/luyu/archive/2005/12/03/289938.html

    http://www.cnblogs.com/chenxizhang/archive/2009/05/22/1486736.html

  • 相关阅读:
    vue 使用echarts 柱状图使用图片显示
    Devexpress分组小计
    小写转大写
    预览打印
    LINQ
    结束任务管理器进程
    游标
    查看死锁
    sql 分页
    压缩解压缩传输的数据
  • 原文地址:https://www.cnblogs.com/swarb/p/9924237.html
Copyright © 2011-2022 走看看