我想在content
中调整button
的大小,以便在我“调整”我的窗口时,buttons
也会调整大小content
button
保持不变?
我应该怎么做才能使内容调整为WRT按钮大小。
谢谢,费萨尔
PS:我在 WPF 中使用 GRID 布局。
答案 0 :(得分:3)
我能想到你这样做的最简单方法是让你在Button
内使用ViewBox
元素:
<Button>
<ViewBox>
<!--Your Button content-->
</ViewBox>
</Button>
答案 1 :(得分:0)
我认为解决这个问题的最佳方法是实际制作一个可以动态控制文本大小的微小转换器。
以下是此类转换器的示例:
C#
using System.Globalization;
public class FontSizeConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
double actualHeight = System.Convert.ToDouble(value);
int fontSize = (int)(actualHeight * .5);
return fontSize;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
然后在xaml中使用此类:
XAML
...
<Window.Resources>
<l:FontSizeConverter x:Key="FSConverter" />
</Window.Resources>
...
<Grid>
<Button Content="Dat Button" FontSize="{Binding Path=ActualHeight, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Grid}, Converter={StaticResource FSConverter}}"/>
</Grid>
希望这会有所帮助,如果您对此有任何疑问,请与我们联系。
ķ。