add zoom and panning

zoom: ctrl + wheel, zoomed image:
ctrl + move mousr
This commit is contained in:
Alex Bezdieniezhnykh
2025-06-30 00:01:20 +03:00
parent 627e63e543
commit c42faa1e2e
4 changed files with 108 additions and 28 deletions
+3 -2
View File
@@ -1,9 +1,10 @@
namespace Azaion.Annotator.DTO;
namespace Azaion.Common.DTO;
public enum SelectionState
{
None = 0,
NewAnnCreating = 1,
AnnResizing = 2,
AnnMoving = 3
AnnMoving = 3,
PanZoomMoving = 4,
}