<StackPanel Orientation="Horizontal"
HorizontalAlignment="Center"
VerticalAlignment="Center">
<StackPanel.Resources>
<Style x:Key="ButtonFocusVisual" TargetType="{x:Type Control}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Rectangle Margin="2"
Stroke="Red"
StrokeThickness="2"
StrokeDashArray="1 2"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style TargetType="{x:Type Button}">
<Setter Property="Width"
Value="60" />
<Setter Property="Height"
Value="60" />
<Setter Property="Margin"
Value="20" />
</Style>
</StackPanel.Resources>
<Button Content="Defualt" />
<Button Content="Style" FocusVisualStyle="{StaticResource ButtonFocusVisual}"/>
<Button Content="Null" FocusVisualStyle="{x:Null}"/>
</StackPanel>
댓글남기기