wpf 在app.xaml 中设定了全局的textblock fontsize,大部分控件的字体都受影响了 20
<StyleTargetType="{x:TypeTextBlock}"><SetterProperty="Margin"Value="2"/><SetterProper...
<Style TargetType="{x:Type TextBlock}">
<Setter Property="Margin" Value="2"/>
<Setter Property="FontSize" Value="15"/>
</Style>
项目中的DatePicker控件字体也受影响了,为DatePicker控件指定style ,都没用,求解! 展开
<Setter Property="Margin" Value="2"/>
<Setter Property="FontSize" Value="15"/>
</Style>
项目中的DatePicker控件字体也受影响了,为DatePicker控件指定style ,都没用,求解! 展开
展开全部
添加一个key就行了:
<Style x:Key="CustomTextBlock" TargetType="{x:Type TextBlock}">
<Setter Property="Margin" Value="2"/>
<Setter Property="FontSize" Value="15"/>
</Style>
使用时指定Key,未指定的就不会有影响了:
<TextBlock Style="{StaticResource CustomTextBlock}"/>
希望对你有帮助,还有疑问请追问或是Hi
<Style x:Key="CustomTextBlock" TargetType="{x:Type TextBlock}">
<Setter Property="Margin" Value="2"/>
<Setter Property="FontSize" Value="15"/>
</Style>
使用时指定Key,未指定的就不会有影响了:
<TextBlock Style="{StaticResource CustomTextBlock}"/>
希望对你有帮助,还有疑问请追问或是Hi
更多追问追答
追问
这样是没问题,但是项目中太多TextBlock , 每个都加上Style, 太麻烦了,有没有办法让DatePicker 在有Style的情况下也能改变字体
追答
给DatePicker写个Style不行吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在每个窗体或者page的xaml文件中添加:
<Window.Resources>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="Margin" Value="2"/>
<Setter Property="FontSize" Value="15"/>
</Style>
</Window.Resources>
不知道是什么原因,单独再每个xaml的window.resource中设置样式,其他控件不受影响。
但在app.xmal中设置textblock样式,所有其他控件都改变了。
有知道原理的告知下。
<Window.Resources>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="Margin" Value="2"/>
<Setter Property="FontSize" Value="15"/>
</Style>
</Window.Resources>
不知道是什么原因,单独再每个xaml的window.resource中设置样式,其他控件不受影响。
但在app.xmal中设置textblock样式,所有其他控件都改变了。
有知道原理的告知下。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询