Files
aistudio-wpf-diagram/Util.DiagramDesigner/Enums/RadialOrientation.cs

22 lines
438 B
C#
Raw Normal View History

2021-07-23 09:42:22 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Util.DiagramDesigner
{
public enum RadialOrientation
{
[Description("中心")]
Center,
[Description("左上")]
LeftTop,
[Description("右上")]
RightTop,
[Description("右下")]
RightBottom,
[Description("左下")]
LeftBottom,
}
}