mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
23 lines
471 B
C#
23 lines
471 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,
|
|
ConnectingLineSmooth = 10,
|
|
ConnectingLineStraight = 11,
|
|
ConnectingLineCorner = 12,
|
|
ConnectingLineBoundary = 13,
|
|
Text = 20,
|
|
}
|
|
}
|