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