| 1234567891011121314151617181920212223242526272829303132 | 
							- using System.Windows.Controls;
 
- using MECF.Framework.Simulator.Core.Commons;
 
- using Venus_Simulator.Devices;
 
- namespace Venus_Simulator.Views
 
- {
 
-     /// <summary>
 
-     /// SimuAIRSYSChillerPMBView.xaml 的交互逻辑
 
-     /// </summary>
 
-     public partial class SimuAIRSYSChillerPMBView : UserControl
 
-     {
 
-         public SimuAIRSYSChillerPMBView()
 
-         {
 
-             InitializeComponent();
 
-             this.DataContext = new MockAIRSYSChillerViewModelPMB();
 
-         }
 
-     }
 
-     class MockAIRSYSChillerViewModelPMB : SerialPortDeviceViewModel
 
-     {
 
-         public string Title
 
-         {
 
-             get { return "AIRSYS Chiller PMB simulator"; }
 
-         }
 
-         public MockAIRSYSChillerViewModelPMB() : base("AIRSYSCh illerPMBSimulator")
 
-         {
 
-             Init(new AIRSYSChillerMock("COM72"));
 
-         }
 
-     }
 
- }
 
 
  |