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 SimuAdTecMatchPMAView : UserControl
- {
- public SimuAdTecMatchPMAView()
- {
- InitializeComponent();
- this.DataContext = new MockAdTecMatchViewModelPMA();
- }
- }
- class MockAdTecMatchViewModelPMA : SerialPortDeviceViewModel
- {
- public string Title
- {
- get { return "AdTEC match PMA simulator"; }
- }
- public MockAdTecMatchViewModelPMA() : base("AdTecMatchPMASimulator")
- {
- Init(new AdTecMatchMockPMA());
- }
- }
- }
|