流程图审批流程进行中

This commit is contained in:
艾竹
2021-07-26 22:37:54 +08:00
parent adbb6b4a51
commit c6d5601558
7 changed files with 123 additions and 4 deletions

View File

@@ -60,13 +60,36 @@ namespace AIStudio.Wpf.ADiagram.Demos.Flowchart
{
SetProperty(ref _color, value);
}
}
}
[Browsable(false)]
public NodeKinds Kind { get; set; }
[Browsable(false)]
public string StateImage { get; set; }
#region 使
private int _status;
public int Status
{
get { return _status; }
set
{
SetProperty(ref _status, value);
}
}
private string _remark;
public string Remark
{
get { return _remark; }
set
{
SetProperty(ref _remark, value);
}
}
#endregion
}
public class StartFlowNode : FlowNode