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 SimuAdTecMatchPMBView : UserControl
- {
- public SimuAdTecMatchPMBView()
- {
- InitializeComponent();
- this.DataContext = new MockAdTecMatchViewModelPMB();
- }
- }
- class MockAdTecMatchViewModelPMB : SerialPortDeviceViewModel
- {
- public string Title
- {
- get { return "AdTEC match PMB simulator"; }
- }
- public MockAdTecMatchViewModelPMB() : base("AdTecMatchPMBSimulator")
- {
- Init(new AdTecMatchMockPMB());
- }
- }
- }
|