private void HandleMove(object sender, MouseEventArgs e)
 {
     if (!_isDrawing)
     {
         return;
     }
     _pictureBoxContainer.Refresh();
     _regionSelectionDTO.XEnd = e.X;
     _regionSelectionDTO.YEnd = e.Y;
     _form.UpdateRectangle(_regionSelectionDTO.ToRectangle());
     _pictureBoxContainer.Invalidate();
 }
 public void SetBounds(RegionSelectionDTO tool)
 {
     SetTextboxValues(tool.ToRectangle());
 }