mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
23 lines
545 B
C#
23 lines
545 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Text;
|
|
using AIStudio.Wpf.DiagramDesigner;
|
|
|
|
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)
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|