如何在网格样式中设置Foreground
中所有子元素的Grid
颜色?我知道我以前做过这个,但我不记得在哪里或如何。
<Style x:Key="MyGridStyle" TargetType="{x:Type Grid}">
// I want to set the font color here
</Style>
<Grid Style="{StaticResource MyGridStyle}">
...
</Grid>
我知道我可以使用
<Grid.Resources>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="Red" />
</Style>
<Style TargetType="{x:Type TextBox}">
<Setter Property="Foreground" Value="Red" />
</Style>
</Grid.Resources>
但是我想在Style
中设置此值,而不是在Grid
答案 0 :(得分:16)
想出来,我只需要在<Style.Resources>
<Style x:Key="MyGridStyle" TargetType="{x:Type Grid}">
<Style.Resources>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="Red" />
</Style>
<Style TargetType="{x:Type TextBox}">
<Setter Property="Foreground" Value="Red" />
</Style>
</Style.Resources>
</Style>
答案 1 :(得分:16)
怎么样:
<Style x:Key="MyGridStyle" TargetType="{x:Type Grid}">
<Setter Property="TextElement.Foreground" Value="Red"/>
</Style>