グリッドのスタイル内から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