private void OnMouseMove(object sender, MouseEventArgs e) { if (_clickedPoint == null) { return; } var p = _transformation.ConvertToIm((Size)e.Location); Transformation = _transformation.SetTranslate(_clickedPoint.Value - p); }
private ProTransformation FixTranslation(ProTransformation value) { var maxScale = Math.Max((double)Image.Width / ClientRectangle.Width, (double)Image.Height / ClientRectangle.Height); if (value.Scale > maxScale) { value = value.SetScale(maxScale); } if (value.Scale < 0.3) { value = value.SetScale(0.3); } var rectSize = value.ConvertToIm(ClientRectangle.Size); var max = new Size(Image.Width - rectSize.Width, Image.Height - rectSize.Height); value = value.SetTranslate((new Point(Math.Min(value.Translation.X, max.Width), Math.Min(value.Translation.Y, max.Height)))); if (value.Translation.X < 0 || value.Translation.Y < 0) { value = value.SetTranslate(new Point(Math.Max(value.Translation.X, 0), Math.Max(value.Translation.Y, 0))); } return(value); }