Exemplo n.º 1
0
 private void Update()
 {
     this.lblMsg.Text = "正在检查是否有更新...";
     try
     {
         INViewModel inViewModel = new INViewModel();
         inViewModel.InitService();
         inViewModel.GetAppUpdate(this.sessionService.Jid, AppUtil.Instance.AppUpdateVerson());
     }
     catch (System.InvalidOperationException)
     {
         this.lblMsg.Text              = "更新发生错误,请重试!";
         this.btnCheckUpdate.Content   = "重新检查";
         this.btnCheckUpdate.IsEnabled = true;
     }
 }
Exemplo n.º 2
0
 private void InitData()
 {
     this.inViewModel    = new INViewModel();
     this.sessionService = ServiceUtil.Instance.SessionService;
 }