Files
aistudio-wpf-diagram/Util.DiagramDesigner/Enums/CursorMode.cs

14 lines
203 B
C#
Raw Normal View History

2021-07-23 09:42:22 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Util.DiagramDesigner
{
public enum CursorMode
{
Normal = 0,
Format = 1,
Move = 2,
}
}