mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
25 lines
503 B
C#
25 lines
503 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public enum ArrowSizeStyle
|
|
{
|
|
[Description("非常小")]
|
|
VerySmall = 6,
|
|
[Description("小")]
|
|
Small = 8,
|
|
[Description("中")]
|
|
Middle = 10,
|
|
[Description("大")]
|
|
Large = 12,
|
|
[Description("特别大")]
|
|
ExtraLarge = 16,
|
|
[Description("巨大")]
|
|
Huge = 24,
|
|
|
|
}
|
|
}
|