Files
aistudio-wpf-diagram/Util.DiagramDesigner/Enums/CursorMode.cs
2021-07-23 09:42:22 +08:00

14 lines
203 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Util.DiagramDesigner
{
public enum CursorMode
{
Normal = 0,
Format = 1,
Move = 2,
}
}