终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

42 lines
1.6 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using BPA.Helper;
  7. namespace BPASmartClient.Update.Model
  8. {
  9. public class UpdateModel : NotifyBase
  10. {
  11. /// <summary>
  12. /// 软件名称
  13. /// </summary>
  14. public string Name { get { return _mName; } set { _mName = value; OnPropertyChanged(); } }
  15. private string _mName = "味魔方管理系统软件[简称:味魔方] ";
  16. /// <summary>
  17. /// 软件当前版本号
  18. /// </summary>
  19. public string Version { get { return _mVersion; } set { _mVersion = value; OnPropertyChanged(); } }
  20. private string _mVersion = "V1.0.1";
  21. /// <summary>
  22. /// 软件升级版本号
  23. /// </summary>
  24. public string UpgradeVersion { get { return _mUpgradeVersion; } set { _mUpgradeVersion = value; OnPropertyChanged(); } }
  25. private string _mUpgradeVersion = "V1.0.2";
  26. /// <summary>
  27. /// 软件更新说明
  28. /// </summary>
  29. public string UpdateDescription { get { return _mUpdateDescription; } set { _mUpdateDescription = value; OnPropertyChanged(); } }
  30. private string _mUpdateDescription = "下列 Bug 问题已修复:\n1、当在某些语言环境中保存文档后重新打开时,Canvas的缩放级别与文件保存时不同。\n2、删除样本数据后执行“另存为”时,有时无法使用串行打印机打印。\n3、如果显示放大率设置为100%以外的值,有时仅部分显示最小化、最大化和关闭按钮。\n4、其他小Bug。";
  31. }
  32. }