mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-02 15:50:51 +08:00
23 lines
492 B
C#
23 lines
492 B
C#
using System.ComponentModel;
|
|
|
|
namespace AIStudio.Wpf.Flowchart
|
|
{
|
|
public enum NodeKinds
|
|
{
|
|
[Description("节点")]
|
|
Normal = 0,
|
|
[Description("开始")]
|
|
Start = 1,
|
|
[Description("结束")]
|
|
End = 2,
|
|
[Description("中间节点")]
|
|
Middle = 3,
|
|
[Description("条件节点")]
|
|
Decide = 4,
|
|
[Description("并行开始")]
|
|
COBegin = 5,
|
|
[Description("并行结束")]
|
|
COEnd = 6,
|
|
}
|
|
}
|