Skip to content

Commit 8ccbbe7

Browse files
committed
Fix style of ShowErrorsConfigurationView
1 parent b2b4ace commit 8ccbbe7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/ResXManager.VSIX/Visuals/ShowErrorsConfigurationView.xaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,20 @@
77
xmlns:shell="clr-namespace:Microsoft.VisualStudio.Shell;assembly=Microsoft.VisualStudio.Shell.15.0"
88
xmlns:toms="urn:TomsToolbox"
99
xmlns:properties="clr-namespace:ResXManager.VSIX"
10+
xmlns:styles="urn:TomsToolbox.Wpf.Styles"
1011
d:DataContext="{d:DesignInstance local:ShowErrorsConfigurationViewModel}">
1112
<StackPanel>
12-
<CheckBox Content="{x:Static properties:Resources.ShowErrorsConfiguration_SwitchHeader}" IsChecked="{Binding Configuration.ShowErrorsInErrorList}" />
13+
<CheckBox Content="{x:Static properties:Resources.ShowErrorsConfiguration_SwitchHeader}"
14+
IsChecked="{Binding Configuration.ShowErrorsInErrorList}"
15+
Style="{DynamicResource {x:Static styles:ResourceKeys.CheckBoxStyle}}"/>
1316
<Decorator Height="10" />
1417
<DockPanel>
1518
<TextBlock Text="{x:Static properties:Resources.ShowErrorsConfiguration_ShowAs}" DockPanel.Dock="Left" VerticalAlignment="Center" />
1619
<Decorator Width="8" DockPanel.Dock="Left" />
1720
<ComboBox ItemsSource="{Binding Source={x:Type shell:TaskErrorCategory}, Converter={x:Static toms:EnumToValuesConverter.Default}}"
1821
SelectedItem="{Binding Configuration.TaskErrorCategory}"
19-
Width="200" HorizontalAlignment="Left" />
22+
Width="200" HorizontalAlignment="Left"
23+
Style="{DynamicResource {x:Static styles:ResourceKeys.ComboBoxStyle}}"/>
2024
</DockPanel>
2125
</StackPanel>
2226
</UserControl>

0 commit comments

Comments
 (0)