mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-06 01:06:37 +08:00
项目结构调整
This commit is contained in:
32
Extensions/AIStudio.Wpf.SFC/SFCNodeKinds.cs
Normal file
32
Extensions/AIStudio.Wpf.SFC/SFCNodeKinds.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Text;
|
||||
|
||||
namespace AIStudio.Wpf.SFC
|
||||
{
|
||||
public enum SFCNodeKinds
|
||||
{
|
||||
[Description("开始")]
|
||||
Start = 1,
|
||||
[Description("节点")]
|
||||
Node = 2,
|
||||
[Description("转移条件")]
|
||||
Condition = 3,
|
||||
[Description("动作")]
|
||||
Action = 4,
|
||||
[Description("并行开始")]
|
||||
COBegin = 5,
|
||||
[Description("并行结束")]
|
||||
COEnd = 6,
|
||||
|
||||
[Description("容器")]
|
||||
Simulate_Tank = 100,
|
||||
[Description("阀门")]
|
||||
Simulate_Solenoid = 101,
|
||||
[Description("开始")]
|
||||
Simulate_Start= 102,
|
||||
[Description("测定清单")]
|
||||
Simulate_List =103,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user