Я нашел немного грязного исправления для этого. Когда срабатывает событие ViewPortChanged, я передаю недавно измененный ViewportOrigin MultiScaleImage в метод ниже. Проблема в том, что порт просмотра изменяется асинхронно, и пользователь может видеть, что изображение перемещается обратно к его границам.
public void SetViewportOrigin(Point point)
{
Point bottomRight = ZoomImage.ElementToLogicalPoint(new Point(ZoomImage.ActualWidth / ZoomImage.ViewportWidth - ZoomImage.ActualWidth, ZoomImage.ActualWidth / (ZoomImage.ViewportWidth * 1.33184438 /*ZoomImage.AspectRatio*/) - ZoomImage.ActualHeight));
bottomRight.X -= ZoomImage.ViewportOrigin.X;
bottomRight.Y -= ZoomImage.ViewportOrigin.Y;
if (point.X < 0)
{ //left edge
point.X = 0;
Debug.WriteLine("left edge");
}
else if (point.X > bottomRight.X)
{//right edge
point.X = bottomRight.X;
Debug.WriteLine("right edge");
}
if (point.Y > 1.0)
{//bottom edge
point.Y = 1.0;
Debug.WriteLine("bottom edge1");
}
if (point.Y < 0)
{//top edge
point.Y = 0;
Debug.WriteLine("top edge");
}
else if (point.Y > bottomRight.Y) //bottom edge
{
point.Y = bottomRight.Y;
}
ZoomImage.ViewportOrigin = point;
}