2021-08-01 22:30:12 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
|
using System.Text;
|
2022-10-28 22:45:39 +08:00
|
|
|
|
using AIStudio.Wpf.DiagramDesigner;
|
2021-08-01 22:30:12 +08:00
|
|
|
|
|
|
|
|
|
|
namespace AIStudio.Wpf.SFC.ViewModels
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Simulate_ListViewModel : SFCNode
|
|
|
|
|
|
{
|
|
|
|
|
|
public Simulate_ListViewModel() : base(SFCNodeKinds.Simulate_List)
|
|
|
|
|
|
{
|
|
|
|
|
|
ItemWidth = 170;
|
|
|
|
|
|
ItemHeight = 260;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Simulate_ListViewModel(IDiagramViewModel parent, DesignerItemBase designer) : base(parent, designer)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
2022-12-08 20:54:45 +08:00
|
|
|
|
|
|
|
|
|
|
public Simulate_ListViewModel(IDiagramViewModel parent, string json) : base(parent, json)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-08-01 22:30:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|