Files
test_demo/MX-PD-盘古 - new/PanGu.DieBonderApp/MainShell/DeviceMaintance/ViewModel/IOMaintanceViewModel.cs
Shi.Ji e31d3560bb 添加 MX-PD-盘古 项目文件
将 MX-PD-盘古 - new 目录下的所有文件添加到主仓库
2026-05-18 11:43:09 +08:00

39 lines
992 B
C#

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; }
}
}
}