mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-21 00:46:36 +08:00
36 lines
778 B
C#
36 lines
778 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public enum DrawMode
|
|
{
|
|
Normal = 0,
|
|
ConnectingLineSmooth = 10,
|
|
ConnectingLineStraight = 11,
|
|
ConnectingLineCorner = 12,
|
|
ConnectingLineBoundary = 13,
|
|
//101-110为可部分擦除的形状
|
|
Eraser = 100,
|
|
EraserPreview = 101,
|
|
ErasableLine = 110,
|
|
ErasableRectangle = 111,
|
|
ErasableEllipse = 112,
|
|
ErasablePolyline = 113,
|
|
ErasablePolygon = 114,
|
|
ErasableDirectLine = 115,
|
|
|
|
Text = 200,
|
|
Line = 210,
|
|
Rectangle = 211,
|
|
Ellipse = 212,
|
|
Polyline = 213,
|
|
Polygon = 214,
|
|
DirectLine = 215,
|
|
|
|
|
|
|
|
}
|
|
}
|