GalilView.xaml.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. namespace CyberX8_Simulator.Views
  7. {
  8. /// <summary>
  9. /// GalilView.xaml 的交互逻辑
  10. /// </summary>
  11. public partial class GalilView : UserControl
  12. {
  13. public GalilView()
  14. {
  15. InitializeComponent();
  16. this.Loaded += OnViewLoaded;
  17. }
  18. private void OnViewLoaded(object sender, RoutedEventArgs e)
  19. {
  20. (DataContext as TimerViewModelBase)?.Start();
  21. }
  22. }
  23. class GalilViewModel : SocketDeviceViewModel
  24. {
  25. #region 属性
  26. public string Title
  27. {
  28. get { return "Galil Simulator"; }
  29. }
  30. #endregion
  31. #region 内部变量
  32. private GalilSocketSimulator _sim;
  33. #endregion
  34. public GalilViewModel(string str) : base("GalilViewModel")
  35. {
  36. int.TryParse(str, out int port);
  37. _sim = new GalilSocketSimulator(port);
  38. Init(_sim);
  39. }
  40. }
  41. }