SimuAdTecMatchPMBView.xaml.cs 830 B

12345678910111213141516171819202122232425262728293031
  1. using System.Windows.Controls;
  2. using MECF.Framework.Simulator.Core.Commons;
  3. using EfemDualSimulator.Devices;
  4. namespace EfemDualSimulator.Views
  5. {
  6. /// <summary>
  7. /// Interaction logic for SimuAdTecMatchView.xaml
  8. /// </summary>
  9. public partial class SimuAdTecMatchPMBView : UserControl
  10. {
  11. public SimuAdTecMatchPMBView(string param)
  12. {
  13. InitializeComponent();
  14. this.DataContext = new MockAdTecMatchViewModelPMB(param);
  15. }
  16. }
  17. class MockAdTecMatchViewModelPMB : SerialPortDeviceViewModel
  18. {
  19. public string Title
  20. {
  21. get { return "AdTEC match PMB simulator"; }
  22. }
  23. public MockAdTecMatchViewModelPMB(string param) : base("AdTecMatchPMBSimulator")
  24. {
  25. Init(new AdTecMatchMockPMB(param));
  26. }
  27. }
  28. }