mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-05 00:37:19 +08:00
线条动画支持大小切换
This commit is contained in:
24
AIStudio.Wpf.DiagramDesigner/Enums/SizeStyle.cs
Normal file
24
AIStudio.Wpf.DiagramDesigner/Enums/SizeStyle.cs
Normal 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,
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user