我有一个UserControl,并且必须使用宽高比调整UserControl的大小。 这意味着:width:height = 2:1。 目前我正在使用此代码:
protected override Size ArrangeOverride(Size arrangeBounds)
{
if (ActualWidth == 0 || ActualHeight == 0) return arrangeBounds;
base.ArrangeOverride(arrangeBounds);
double ratio = 2;
if (Parent != null)
{
var size = new Size(arrangeBounds.Height * ratio, arrangeBounds.Height);
double containerWidth = ((FrameworkElement)Parent).ActualWidth;
if (containerWidth < size.Width)
{
double newHeight = arrangeBounds.Height * (containerWidth / size.Width);
canvas.Width = newHeight * ratio;
canvas.Height = newHeight;
}
else
{
canvas.Width = size.Height * ratio;
canvas.Height = size.Height;
}
}
return arrangeBounds;
}
但它并没有真正起作用。这意味着它可以工作但不是每次都有效。如果我最大窗口它有时不会调整大小,所以如果控件调整大小,它有点“随机”。所以,如果有人会有一个更好的解决方案,如果非常好。
答案 0 :(得分:4)
最直接的解决方案是通过值转换器将高度直接绑定到宽度。
答案 1 :(得分:4)
有点晚了,但我最近遇到了同样的问题,因为我没有找到一个好的解决方案,所以我决定编写自己的布局控件/装饰器并在此写一篇关于它的博客文章:
http://coding4life.wordpress.com/2012/10/15/wpf-resize-maintain-aspect-ratio/
基本上我的解决方案是覆盖MeasureOverride
和ArrangeOverride
。到目前为止,它在所有常见的容器中都能很好地工作,并且我没有遇到像你所描述的任何问题。
我建议您阅读帖子,在那里找到工作装饰控件,但最重要的方法是:
protected override Size MeasureOverride(Size constraint)
{
if (Child != null)
{
constraint = SizeToRatio(constraint, false);
Child.Measure(constraint);
if(double.IsInfinity(constraint.Width)
|| double.IsInfinity(constraint.Height))
{
return SizeToRatio(Child.DesiredSize, true);
}
return constraint;
}
// we don't have a child, so we don't need any space
return new Size(0, 0);
}
protected override Size ArrangeOverride(Size arrangeSize)
{
if (Child != null)
{
var newSize = SizeToRatio(arrangeSize, false);
double widthDelta = arrangeSize.Width - newSize.Width;
double heightDelta = arrangeSize.Height - newSize.Height;
double top = 0;
double left = 0;
if (!double.IsNaN(widthDelta)
&& !double.IsInfinity(widthDelta))
{
left = widthDelta/2;
}
if (!double.IsNaN(heightDelta)
&& !double.IsInfinity(heightDelta))
{
top = heightDelta/2;
}
var finalRect = new Rect(new Point(left, top), newSize);
Child.Arrange(finalRect);
}
return arrangeSize;
}
public Size SizeToRatio(Size size, bool expand)
{
double ratio = AspectRatio;
double height = size.Width / ratio;
double width = size.Height * ratio;
if (expand)
{
width = Math.Max(width, size.Width);
height = Math.Max(height, size.Height);
}
else
{
width = Math.Min(width, size.Width);
height = Math.Min(height, size.Height);
}
return new Size(width, height);
}
我希望它有所帮助!
答案 2 :(得分:2)
使用ViewBox
包裹您的控件,并将ViewBox.Stretch
设置为Uniform
。您也可以通过这种方式限制MaxWidth和MaxHeight。