mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-12 20:49:26 +08:00
23 lines
455 B
C#
23 lines
455 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public enum DrawMode
|
|
{
|
|
Normal = 0,
|
|
Line = 1,
|
|
Rectangle = 2,
|
|
Ellipse = 3,
|
|
Polyline = 4,
|
|
Polygon = 5,
|
|
DirectLine = 6,
|
|
ConnectingLine = 10,
|
|
CornerConnectingLine = 11,
|
|
BoundaryConnectingLine = 12,
|
|
RadiusConnectingLine = 13,
|
|
Text = 20,
|
|
}
|
|
}
|