123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using Aitex.Core.UI.MVVM;
- using CyberX8_Simulator.Devices;
- using MECF.Framework.Simulator.Core.Commons;
- using System.Windows;
- using System.Windows.Controls;
- namespace CyberX8_Simulator.Views
- {
- /// <summary>
- /// GalilView.xaml 的交互逻辑
- /// </summary>
- public partial class GalilView : UserControl
- {
- public GalilView()
- {
- InitializeComponent();
- this.Loaded += OnViewLoaded;
- }
- private void OnViewLoaded(object sender, RoutedEventArgs e)
- {
- (DataContext as TimerViewModelBase)?.Start();
- }
- }
- class GalilViewModel : SocketDeviceViewModel
- {
- #region 属性
- public string Title
- {
- get { return "Galil Simulator"; }
- }
- #endregion
- #region 内部变量
- private GalilSocketSimulator _sim;
- #endregion
- public GalilViewModel(string str) : base("GalilViewModel")
- {
- int.TryParse(str, out int port);
- _sim = new GalilSocketSimulator(port);
- Init(_sim);
- }
- }
- }
|