CurentApplicationSettings.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.ObjectModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using TeamAAS_VP.Core;
  9. using TeamAAS_VP;
  10. using static Org.BouncyCastle.Math.EC.ECCurve;
  11. namespace TeamAAS_VP.Models
  12. {
  13. public class CurentApplicationSettings : BindableBase
  14. {
  15. public CurentApplicationSettings()
  16. {
  17. }
  18. private string _CompanyTitle= "江苏新惕姆智能装备有限公司";
  19. /// <summary>
  20. /// 公司名称标题
  21. /// </summary>
  22. public string CompanyTitle
  23. {
  24. get { return _CompanyTitle; }
  25. set { SetProperty(ref _CompanyTitle, value); }
  26. }
  27. private string _Title = "Team Vision";
  28. public string Title
  29. {
  30. get { return _Title; }
  31. set { SetProperty(ref _Title,value); }
  32. }
  33. private DateTime _DT = DateTime.Now;
  34. public DateTime DT
  35. {
  36. get { return _DT; }
  37. set { SetProperty(ref _DT, value); }
  38. }
  39. private Dictionary<Guid, double> _RobotJogSetpDistance = new Dictionary<Guid, double>();
  40. public Dictionary<Guid, double> RobotJogSetpDistance
  41. {
  42. get { return _RobotJogSetpDistance; }
  43. set { SetProperty(ref _RobotJogSetpDistance, value); }
  44. }
  45. }
  46. }