Files
annotations/Azaion.Common/DTO/SelectionState.cs
T
Alex Bezdieniezhnykh c42faa1e2e add zoom and panning
zoom: ctrl + wheel, zoomed image:
ctrl + move mousr
2025-06-30 00:01:20 +03:00

10 lines
164 B
C#

namespace Azaion.Common.DTO;
public enum SelectionState
{
None = 0,
NewAnnCreating = 1,
AnnResizing = 2,
AnnMoving = 3,
PanZoomMoving = 4,
}