mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +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; }
|
|
}
|
|
}
|