-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVisualStudioPanel.xaml
37 lines (36 loc) · 2.24 KB
/
VisualStudioPanel.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:vsfx="clr-namespace:Microsoft.VisualStudio.Shell;assembly=Microsoft.VisualStudio.Shell.15.0"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Aurelia.DotNet.Wizard">
<Style TargetType="{x:Type TextBox}">
<Setter Property="Background" Value="{DynamicResource {x:Static vsfx:VsBrushes.ToolWindowBackgroundKey}}"/>
<Setter Property="Foreground" Value="{DynamicResource {x:Static vsfx:VsBrushes.PanelTextKey}}"/>
<Setter Property="BorderBrush" Value="{DynamicResource {x:Static vsfx:VsBrushes.PanelBorderKey}}"/>
<Setter Property="Padding" Value="5" />
<Setter Property="Margin" Value="5 0" />
</Style>
<Style TargetType="{x:Type ComboBox}" >
<Setter Property="Background" Value="{DynamicResource {x:Static vsfx:VsBrushes.ComboBoxBackgroundKey}}"/>
<Setter Property="Foreground" Value="{DynamicResource {x:Static vsfx:VsBrushes.PanelTextKey}}"/>
<Setter Property="BorderBrush" Value="{DynamicResource {x:Static vsfx:VsBrushes.ComboBoxBorderKey}}"/>
<Setter Property="Padding" Value="5" />
<Setter Property="Margin" Value="5 0" />
</Style>
<Style TargetType="{x:Type Label}">
<Setter Property="Foreground" Value="{DynamicResource {x:Static vsfx:VsBrushes.PanelTextKey}}"/>
</Style>
<Style TargetType="{x:Type CheckBox}">
<Setter Property="Foreground" Value="{DynamicResource {x:Static vsfx:VsBrushes.ToolWindowTextKey}}"/>
<Setter Property="Padding" Value="5" />
<Setter Property="Margin" Value="5 0" />
</Style>
<Style TargetType="{x:Type RadioButton}">
<Setter Property="Foreground" Value="{DynamicResource {x:Static vsfx:VsBrushes.ToolWindowTextKey}}"/>
<Setter Property="Padding" Value="5" />
<Setter Property="Margin" Value="5 0" />
</Style>
<Style TargetType="{x:Type Button}">
<Setter Property="Background" Value="{DynamicResource {x:Static vsfx:VsBrushes.PanelBorderKey}}" />
<Setter Property="Foreground" Value="{DynamicResource {x:Static vsfx:VsBrushes.PanelTextKey}}"/>
</Style>
</ResourceDictionary>