mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
43 lines
965 B
C#
43 lines
965 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using AIStudio.Wpf.DiagramDesigner;
|
|
|
|
namespace AIStudio.Wpf.SFC.ViewModels
|
|
{
|
|
public class Simulate_StartViewModel : SFCNode
|
|
{
|
|
public Simulate_StartViewModel() : base(SFCNodeKinds.Simulate_Start)
|
|
{
|
|
ItemWidth = 32;
|
|
ItemHeight = 32;
|
|
|
|
ExecuteAddLeftInput(null);
|
|
ExecuteAddRightOutput(null);
|
|
}
|
|
|
|
public Simulate_StartViewModel(IDiagramViewModel root, DesignerItemBase designer) : base(root, designer)
|
|
{
|
|
}
|
|
|
|
public Simulate_StartViewModel(IDiagramViewModel root, string json) : base(root, json)
|
|
{
|
|
|
|
}
|
|
|
|
private LinkPoint linkPoint;
|
|
public LinkPoint LinkPoint
|
|
{
|
|
get
|
|
{
|
|
return linkPoint;
|
|
}
|
|
set
|
|
{
|
|
SetProperty(ref linkPoint, value);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|