gpt4 book ai didi

c# - 如何更改默认的 Xaml TextBox 字体大小

转载 作者:太空宇宙 更新时间:2023-11-03 11:46:39 25 4
gpt4 key购买 nike

在我的 file.xaml 中,如何设置 TextBlock 默认大小,这样我就不必在 TextBlock 元素中包含该属性?

<UserControl.Resources>
<!-- how?/can i set the default font size for textblock element here? -->
</UserControl.Resources>

<Grid>
<StackPanel>
<TextBlock Text="{Binding HelloWorld}" />
</StackPanel>
</Grid>

最佳答案

将此代替您的评论放在 UserControl.Resources

<Style TargetType="TextBlock">
<Setter Property="FontSize" Value="20" />
</Style>

关于c# - 如何更改默认的 Xaml TextBox 字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3263836/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com