V1版本
This commit is contained in:
27
CapMachine.Wpf/Services/CanDriveService.cs
Normal file
27
CapMachine.Wpf/Services/CanDriveService.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using CapMachine.Wpf.CanDrive;
|
||||
using Prism.Mvvm;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.Services
|
||||
{
|
||||
/// <summary>
|
||||
/// Can驱动服务
|
||||
/// </summary>
|
||||
public class CanDriveService:BindableBase
|
||||
{
|
||||
public CanDriveService()
|
||||
{
|
||||
ToomossCanDrive=new ToomossCanFD();
|
||||
//ToomossCanDrive.StartCanDrive();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// ToomossCanDrive
|
||||
/// </summary>
|
||||
public ToomossCanFD ToomossCanDrive { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user