mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-02 13:23:22 -07:00
21 lines
1.1 KiB
Text
21 lines
1.1 KiB
Text
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||
|
<Style x:Key="Style.Icon" TargetType="{x:Type Path}">
|
||
|
<Setter Property="Width" Value="16"/>
|
||
|
<Setter Property="Height" Value="16"/>
|
||
|
<Setter Property="Stretch" Value="Uniform"/>
|
||
|
<Setter Property="Fill" Value="{DynamicResource Brush.FG}"/>
|
||
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
||
|
<Setter Property="SnapsToDevicePixels" Value="True"/>
|
||
|
<Setter Property="RenderOptions.BitmapScalingMode" Value="HighQuality"/>
|
||
|
</Style>
|
||
|
|
||
|
<Style x:Key="Style.WindowControlIcon" TargetType="{x:Type Path}">
|
||
|
<Setter Property="Stretch" Value="None"/>
|
||
|
<Setter Property="Fill" Value="{DynamicResource Brush.FG}"/>
|
||
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
||
|
<Setter Property="SnapsToDevicePixels" Value="True"/>
|
||
|
<Setter Property="RenderOptions.BitmapScalingMode" Value="HighQuality"/>
|
||
|
<Setter Property="RenderOptions.EdgeMode" Value="Aliased"/>
|
||
|
</Style>
|
||
|
</ResourceDictionary>
|