GalilView.xaml.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. using Aitex.Core.UI.MVVM;
  2. using Aitex.Core.Utilities;
  3. using CyberX8_Simulator.Devices;
  4. using MECF.Framework.Simulator.Core.Commons;
  5. using System.Collections.ObjectModel;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Input;
  9. namespace CyberX8_Simulator.Views
  10. {
  11. /// <summary>
  12. /// GalilView.xaml 的交互逻辑
  13. /// </summary>
  14. public partial class GalilView : UserControl
  15. {
  16. public GalilView()
  17. {
  18. InitializeComponent();
  19. this.Loaded += OnViewLoaded;
  20. }
  21. private void OnViewLoaded(object sender, RoutedEventArgs e)
  22. {
  23. (DataContext as TimerViewModelBase)?.Start();
  24. }
  25. }
  26. class GalilViewModel : SocketDeviceViewModel
  27. {
  28. #region 属性
  29. public string Title
  30. {
  31. get { return "Galil Simulator"; }
  32. }
  33. private string _inputsSelectedItem;
  34. [IgnorePropertyChange]
  35. public string InputsSelectedItem
  36. {
  37. get
  38. {
  39. return _inputsSelectedItem;
  40. }
  41. set
  42. {
  43. _inputsSelectedItem = value;
  44. }
  45. }
  46. private int _inputValue;
  47. [IgnorePropertyChange]
  48. public int InputValue
  49. {
  50. get
  51. {
  52. return _inputValue;
  53. }
  54. set
  55. {
  56. _inputValue = value;
  57. }
  58. }
  59. private int _inputCurrentValue;
  60. [IgnorePropertyChange]
  61. public int InputCurrentValue
  62. {
  63. get
  64. {
  65. return _inputCurrentValue;
  66. }
  67. set
  68. {
  69. _inputCurrentValue = value;
  70. }
  71. }
  72. public ObservableCollection<string> InputsNameItems { get; set; }
  73. public ObservableCollection<int> DigitalOutputSelected { get; set; }
  74. #endregion
  75. #region 内部变量
  76. public ICommand SetInputsCommand { get; set; }
  77. public ICommand InputsSelectionChangedCommand { get; set; }
  78. private GalilSocketSimulator _sim;
  79. #endregion
  80. public GalilViewModel(string str) : base("GalilViewModel")
  81. {
  82. int.TryParse(str, out int port);
  83. _sim = new GalilSocketSimulator(port);
  84. Init(_sim);
  85. InitData(port);
  86. SetInputsCommand = new DelegateCommand<object>(SetInputsAction);
  87. InputsSelectionChangedCommand = new DelegateCommand<object>(InputsSelectionChangedAction);
  88. }
  89. private void InitData(int port)
  90. {
  91. DigitalOutputSelected = new ObservableCollection<int> { 0, 1 };
  92. InputsNameItems = new ObservableCollection<string>();
  93. foreach (var item in _sim.InputDataNameDIDic.Keys)
  94. {
  95. InputsNameItems.Add(item);
  96. }
  97. }
  98. private void SetInputsAction(object obj)
  99. {
  100. _sim.UpdateInputByte(InputsSelectedItem, InputValue);
  101. InputsSelectionChangedAction("");
  102. }
  103. private void InputsSelectionChangedAction(object obj)
  104. {
  105. InputCurrentValue = _sim.GetInputData(InputsSelectedItem);
  106. }
  107. }
  108. }