如何设置网格样式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