(Choose 1 answer)
What is the following Style tag used for?
<Window x:Class="WPFControls. DemoStyle"
<!--xmlns:-->
Title="DemoStyle" Height="200" Width="300"><Window.Resources>
<Style TargetType="TextBlock">
<Setter Property="Foreground" Value="Green" /><Setter Property="FontSize" Value="20" />
</Style>
</Window. Resources>
<StackPanel Margin="10"><TextBlock>WPF </TextBlock>
<TextBox> NET</TextBox>
</StackPanel>
</Window>
A. Set foreground is Green and FontSize is 20 for TextBox controls
B. Set background is Green and FontSize is 20 for controls
C. Set foreground is Green and FontSize is 20 for TextBlock controls
D. Set foreground is Green and FontSize is 20 for controls
Fish
Q: 44