..
This commit is contained in:
@@ -109,6 +109,8 @@ namespace AGVNavigationCore.Controls
|
||||
private MapNode _connectionStartNode;
|
||||
private Point _connectionEndPoint;
|
||||
private int _mouseMoveCounter = 0; // 디버그용: MouseMove 실행 횟수
|
||||
private int _dragHandleIndex = -1; // 드래그 중인 핸들 인덱스
|
||||
private const int HANDLE_SIZE = 8; // 편집 핸들 크기
|
||||
|
||||
// 영역 선택 관련
|
||||
private bool _isAreaSelecting;
|
||||
@@ -341,6 +343,17 @@ namespace AGVNavigationCore.Controls
|
||||
Invalidate();
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
public PointF PanOffset
|
||||
{
|
||||
get => _panOffset;
|
||||
set
|
||||
{
|
||||
_panOffset = value;
|
||||
Invalidate();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 그리드 표시 여부
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user