2021-07-30 18:26:35 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
2022-10-28 22:45:39 +08:00
|
|
|
|
using AIStudio.Wpf.DiagramDesigner;
|
2021-07-30 18:26:35 +08:00
|
|
|
|
|
|
|
|
|
|
namespace AIStudio.Wpf.SFC.ViewModels
|
|
|
|
|
|
{
|
|
|
|
|
|
public class SFCNodeNode : SFCNode
|
|
|
|
|
|
{
|
|
|
|
|
|
public SFCNodeNode() : base(SFCNodeKinds.Node)
|
|
|
|
|
|
{
|
2021-08-01 22:30:12 +08:00
|
|
|
|
ExecuteAddTopInput(null);
|
|
|
|
|
|
ExecuteAddBottomOutput(null);
|
|
|
|
|
|
ExecuteAddActionOutput(null);
|
2021-07-30 18:26:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public SFCNodeNode(IDiagramViewModel parent, DesignerItemBase designer) : base(parent, designer)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
2021-08-01 22:30:12 +08:00
|
|
|
|
|
2022-12-08 20:54:45 +08:00
|
|
|
|
public SFCNodeNode(IDiagramViewModel parent, string json) : base(parent, json)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-30 18:26:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|