CGlobalData.cs 840 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace PMSUI.Config
  8. {
  9. /// <summary>
  10. /// 全局数据
  11. /// </summary>
  12. [Serializable]
  13. public class CGlobalData
  14. {
  15. public bool gs_IsSavePassword = false;
  16. public string gs_UserName = "";
  17. public string gs_Password = "";
  18. public byte gs_FormBackColor_R = Color.White.R;
  19. public byte gs_FormBackColor_G = Color.White.G;
  20. public byte gs_FormBackColor_B = Color.White.B;
  21. public bool gs_IsShowMaterial = false; // 是否显示物料信息
  22. public bool gs_IsUseBatchOpt = false; // 是否批量操作
  23. public string gs_DisplayLanguage = "zh-CN"; // 界面显示语言
  24. }
  25. }