补全其他参数的下载参数
运行 停止 暂停的防呆操作
This commit is contained in:
14
CapMachine.Wpf/PrismEvent/ProRunEvent.cs
Normal file
14
CapMachine.Wpf/PrismEvent/ProRunEvent.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Prism.Events;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.PrismEvent
|
||||
{
|
||||
public class ProRunEvent : PubSubEvent<ProRunEventMsg>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
24
CapMachine.Wpf/PrismEvent/ProRunEventMsg.cs
Normal file
24
CapMachine.Wpf/PrismEvent/ProRunEventMsg.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.PrismEvent
|
||||
{
|
||||
/// <summary>
|
||||
/// 程序运行事件消息
|
||||
/// </summary>
|
||||
public class ProRunEventMsg
|
||||
{
|
||||
/// <summary>
|
||||
/// 机器
|
||||
/// </summary>
|
||||
public string? Machine { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 消息
|
||||
/// </summary>
|
||||
public string? Msg { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user