mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 09:06:04 +02:00
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:
+13
-13
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user