Files
aistudio-wpf-diagram/AIStudio.Wpf.SFC/Models/SFCToolBoxData.cs

22 lines
554 B
C#
Raw Normal View History

2022-11-30 19:07:40 +08:00
using System;
using System.Windows.Media;
2023-01-12 23:02:53 +08:00
using AIStudio.Wpf.DiagramDesigner;
2022-11-30 19:07:40 +08:00
namespace AIStudio.Wpf.SFC.Models
{
public class SFCToolBoxData : ToolBoxData
{
public SFCNodeKinds Kind
{
get; set;
}
public SFCToolBoxData(SFCNodeKinds kind, Type type, double width = 32, double height = 32) : base(null, null, type, width, height)
{
Kind = kind;
ColorViewModel.LineColor.Color = Colors.Gray;
ColorViewModel.FillColor.Color = Colors.Blue;
}
}
}