1234567891011121314151617181920212223242526272829303132 |
- using System.Windows.Controls;
- using MECF.Framework.Simulator.Core.Commons;
- using VirgoSimulator.Devices;
- namespace VirgoSimulator.Views
- {
- /// <summary>
- /// SimuEdwardsPumpView.xaml 的交互逻辑
- /// </summary>
- public partial class SimuEdwardsPumpPMAView : UserControl
- {
- public SimuEdwardsPumpPMAView()
- {
- InitializeComponent();
- this.DataContext = new MockEdwardsPumpViewModelPMA();
- }
- }
- class MockEdwardsPumpViewModelPMA : SerialPortDeviceViewModel
- {
- public string Title
- {
- get { return "Edwards pump PMA simulator"; }
- }
- public MockEdwardsPumpViewModelPMA() : base("EdwardsPumpPMASimulator")
- {
- Init(new EdwardsPumpMockPMA());
- }
- }
- }
|