FestoView.xaml.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using Aitex.Core.UI.MVVM;
  2. using CyberX8_Simulator.Devices;
  3. using MECF.Framework.Simulator.Core.Commons;
  4. using System.Windows;
  5. using System.Windows.Controls;
  6. using System.Windows.Input;
  7. namespace CyberX8_Simulator.Views
  8. {
  9. /// <summary>
  10. /// FestoView.xaml 的交互逻辑
  11. /// </summary>
  12. public partial class FestoView : UserControl
  13. {
  14. public FestoView()
  15. {
  16. InitializeComponent();
  17. this.Loaded += OnViewLoaded;
  18. }
  19. private void OnViewLoaded(object sender, RoutedEventArgs e)
  20. {
  21. (DataContext as TimerViewModelBase)?.Start();
  22. }
  23. }
  24. class FestoViewModel : SocketDeviceViewModel
  25. {
  26. public string Title
  27. {
  28. get { return "Festo Simulator"; }
  29. }
  30. public ICommand SetDOCommand { get; set; }
  31. private FestoSocketSimulator _sim;
  32. public FestoViewModel(string str) : base("FestoViewModel")
  33. {
  34. int.TryParse(str, out int port);
  35. _sim = new FestoSocketSimulator(port);
  36. Init(_sim);
  37. SetDOCommand = new DelegateCommand<object>(SetDOAction);
  38. }
  39. private void SetDOAction(object obj)
  40. {
  41. //_sim.UpdataDOBytes(DOSelectedItem, DOInputValue);
  42. }
  43. }
  44. }