线条动画支持大小切换

This commit is contained in:
艾竹
2023-04-29 18:36:50 +08:00
parent f4268b9fc2
commit 4a3f278a97
30 changed files with 1095 additions and 317 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace AIStudio.Wpf.DiagramDesigner
{
public enum SizeStyle
{
[Description("非常小")]
VerySmall = 6,
[Description("小")]
Small = 8,
[Description("中")]
Middle = 10,
[Description("大")]
Large = 12,
[Description("特别大")]
ExtraLarge = 16,
[Description("巨大")]
Huge = 24,
}
}