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, Line = 101, Rectangle = 102, Ellipse = 103, Polyline = 104, Polygon = 105, DirectLine = 106, //不可部分擦除 FillableLine = 111, FillableRectangle = 112, FillableEllipse = 113, FillablePolyline = 114, FillablePolygon = 115, FillableDirectLine = 116, Text = 200, } }