程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 個人開發框架總結(六)(3)

個人開發框架總結(六)(3)

編輯:關於C語言

在主程序裡,使用FaibClass.Update中的Updater類來檢測更新。

Updater up = null;
try
{
 up = new Updater(Assembly.GetExecutingAssembly());
 if (up.CheckUpdate())
 {
  Utility.ShowInfoMessage("檢測到新版本,單擊確定後開始更新。");
  up.BeginUpdate();
  Application.Exit();
  return;
 }
 else
 {
  //自更新更新程序
  string file1 = Path.Combine(Application.StartupPath, "UpdaterExc.exc");
  string file2 = Path.Combine(Application.StartupPath, "UpdaterExc.exe");
  if (File.Exists(file1))
  {
   File.Replace(file1, file2, null, true);
  }
 }
}
catch (System.Exception e)
{
}

檢測到新版本後,會顯示UpdateExc的主界面:

只需點擊更新,就可以將之前沒有更新的所有版本一個一個的更新到本地。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved