mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-22 09:26:35 +08:00
16 lines
246 B
C#
16 lines
246 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Util.DiagramDesigner
|
|
{
|
|
public enum ConnectorOrientation
|
|
{
|
|
None = 0,
|
|
Left = 1,
|
|
Top = 2,
|
|
Right = 3,
|
|
Bottom = 4
|
|
}
|
|
}
|