mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-05 09:10:52 +08:00
17 lines
311 B
C#
17 lines
311 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Util.DiagramDesigner
|
|||
|
|
{
|
|||
|
|
public interface IDrawModeViewModel
|
|||
|
|
{
|
|||
|
|
DrawMode GetDrawMode();
|
|||
|
|
void SetDrawMode(DrawMode drawMode);
|
|||
|
|
|
|||
|
|
void ResetDrawMode();
|
|||
|
|
|
|||
|
|
CursorMode CursorMode { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|