mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-05 09:10:52 +08:00
28 lines
696 B
C#
28 lines
696 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public enum LinearOrientation
|
|
{
|
|
[Description("左到右")]
|
|
LeftToRight,
|
|
[Description("左上到右下")]
|
|
LeftTopToRightBottom,
|
|
[Description("上到下")]
|
|
TopToBottom,
|
|
[Description("右上到左下")]
|
|
RightTopToLeftBottom,
|
|
[Description("右到左")]
|
|
RightToLeft,
|
|
[Description("右下到左上")]
|
|
RightBottomToLeftTop,
|
|
[Description("下到上")]
|
|
BottomToTop,
|
|
[Description("左下到右上")]
|
|
LeftBottomToRightTop
|
|
}
|
|
}
|