mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
22 lines
446 B
C#
22 lines
446 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public enum RadialOrientation
|
|
{
|
|
[Description("中心")]
|
|
Center,
|
|
[Description("左上")]
|
|
LeftTop,
|
|
[Description("右上")]
|
|
RightTop,
|
|
[Description("右下")]
|
|
RightBottom,
|
|
[Description("左下")]
|
|
LeftBottom,
|
|
}
|
|
}
|