(Choose 1 answer)
A. Set foreground is Green and FontSize is 20 for controls
B. Set foreground is Green and FontSize is 20 for TextBox controls
C. Set background is Green and FontSize is 20 for controls
D. Set foreground is Green and FontSize is 20 for TextBlock controls
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>
Exit 15