添加 MX-PD-盘古 项目文件
将 MX-PD-盘古 - new 目录下的所有文件添加到主仓库
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
using MainShell.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Stylet;
|
||||
using StyletIoC;
|
||||
|
||||
namespace MainShell.DeviceMaintance.ViewModel
|
||||
{
|
||||
public class IOMaintanceViewModel : BaseScreen
|
||||
{
|
||||
private IOMonitorViewModel _iOMonitorViewModel;
|
||||
[Inject]
|
||||
public IOMonitorViewModel IOMonitorViewModel
|
||||
{
|
||||
get { return _iOMonitorViewModel; }
|
||||
set { _iOMonitorViewModel = value; }
|
||||
}
|
||||
|
||||
private CylinderViewModel _cylinderViewModel;
|
||||
[Inject]
|
||||
public CylinderViewModel CylinderViewModel
|
||||
{
|
||||
get { return _cylinderViewModel; }
|
||||
set { _cylinderViewModel = value; }
|
||||
}
|
||||
|
||||
private IoTestViewModel _ioTestViewModel;
|
||||
[Inject]
|
||||
public IoTestViewModel IoTestViewModel
|
||||
{
|
||||
get { return _ioTestViewModel; }
|
||||
set { _ioTestViewModel = value; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user