FestoView.xaml.cs 3.2 KB

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