12345678910111213141516171819202122232425262728293031 |
- using System.Windows.Controls;
- using MECF.Framework.Simulator.Core.Commons;
- using VirgoSimulator.Devices;
- namespace VirgoSimulator.Views
- {
- /// <summary>
- /// Interaction logic for SimuAdTecMatchView.xaml
- /// </summary>
- public partial class SimuAdTecMatchView : UserControl
- {
- public SimuAdTecMatchView()
- {
- InitializeComponent();
- this.DataContext = new MockAdTecMatchViewModel();
- }
- }
- class MockAdTecMatchViewModel : SerialPortDeviceViewModel
- {
- public string Title
- {
- get { return "AdTEC match simulator"; }
- }
- public MockAdTecMatchViewModel() : base("AdTecMatchSimulator")
- {
- Init(new AdTecMatchMock());
- }
- }
- }
|