2021-07-23 09:42:22 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2022-10-28 22:45:39 +08:00
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
2021-07-23 09:42:22 +08:00
|
|
|
|
{
|
|
|
|
|
|
public enum LinearOrientation
|
|
|
|
|
|
{
|
|
|
|
|
|
[Description("左到右")]
|
|
|
|
|
|
LeftToRight,
|
|
|
|
|
|
[Description("左上到右下")]
|
|
|
|
|
|
LeftTopToRightBottom,
|
|
|
|
|
|
[Description("上到下")]
|
|
|
|
|
|
TopToBottom,
|
|
|
|
|
|
[Description("右上到左下")]
|
|
|
|
|
|
RightTopToLeftBottom,
|
|
|
|
|
|
[Description("右到左")]
|
|
|
|
|
|
RightToLeft,
|
|
|
|
|
|
[Description("右下到左上")]
|
|
|
|
|
|
RightBottomToLeftTop,
|
|
|
|
|
|
[Description("下到上")]
|
|
|
|
|
|
BottomToTop,
|
|
|
|
|
|
[Description("左下到右上")]
|
|
|
|
|
|
LeftBottomToRightTop
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|