Remove trailing white space from code sample

When copy/pasting this code, it adds white space at the end of each line, which some code styles flag as an error.
This commit is contained in:
Drew Noakes
2022-04-19 18:11:19 +10:00
committed by GitHub
parent 20730bfba9
commit 3d81324882
@@ -24,19 +24,19 @@ Windows Presentation Foundation (WPF) provides two parallel mechanisms for chang
In the themes, the default focus visual style is generally very simple. The following is a rough approximation:
```xaml
<Style x:Key="{x:Static SystemParameters.FocusVisualStyleKey}">
<Setter Property="Control.Template">
<Setter.Value>
<ControlTemplate>
<Rectangle StrokeThickness="1"
Stroke="Black"
StrokeDashArray="1 2"
SnapsToDevicePixels="true"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
```xaml
<Style x:Key="{x:Static SystemParameters.FocusVisualStyleKey}">
<Setter Property="Control.Template">
<Setter.Value>
<ControlTemplate>
<Rectangle StrokeThickness="1"
Stroke="Black"
StrokeDashArray="1 2"
SnapsToDevicePixels="true"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
```
<a name="When"></a>