|
16 | 16 | <Style TargetType="GridViewColumnHeader"> |
17 | 17 | <Setter Property="Background" Value="{DynamicResource {x:Static styles:VsBrushes.GridHeadingBackgroundKey}}"/> |
18 | 18 | <Setter Property="Foreground" Value="{DynamicResource {x:Static styles:VsBrushes.GridHeadingTextKey}}"/> |
19 | | - <Setter Property="Margin" Value="-4,-2,0,0"/> |
20 | | - <Setter Property="Padding" Value="4,2,0,0"/> |
| 19 | + <Setter Property="Margin" Value="-4 -2 0 0"/> |
| 20 | + <Setter Property="Padding" Value="4 2 0 0"/> |
21 | 21 | <Setter Property="BorderThickness" Value="0"/> |
22 | 22 | <Setter Property="FontWeight" Value="Bold"/> |
23 | 23 | </Style> |
24 | 24 | <!-- General Styles --> |
25 | 25 | <Style TargetType="ComboBox" BasedOn="{StaticResource {x:Static styles:VsResourceKeys.ThemedDialogComboBoxStyleKey}}"/> |
26 | 26 | <Style TargetType="TextBox" BasedOn="{StaticResource {x:Static styles:VsResourceKeys.ThemedDialogTextBoxStyleKey}}"/> |
27 | 27 | <Style TargetType="TextBlock"> |
28 | | - <Setter Property="Margin" Value="0,0,0,8" /> |
| 28 | + <Setter Property="Margin" Value="0 0 0 8" /> |
29 | 29 | </Style> |
30 | 30 | <Style TargetType="CheckBox"> |
31 | 31 | <Setter Property="HorizontalAlignment" Value="Center" /> |
|
48 | 48 | <DataTemplate> |
49 | 49 | <Border |
50 | 50 | BorderBrush="{DynamicResource {x:Static styles:VsBrushes.StartPageTextSubHeadingSelectedKey}}" |
51 | | - BorderThickness="0,0,1,0" |
52 | | - Margin="-6,-3,-6,-3"> |
53 | | - <StackPanel Margin="6,2,6,2" VerticalAlignment="Center"> |
| 51 | + BorderThickness="0 0 1 0" |
| 52 | + Margin="-6 -3 -6 -3"> |
| 53 | + <StackPanel Margin="6 2 6 2" VerticalAlignment="Center"> |
54 | 54 | <ComboBox SelectedItem="{Binding Kind, Mode=TwoWay}" ItemsSource="{Binding KindArray}" /> |
55 | 55 | </StackPanel> |
56 | 56 | </Border> |
|
71 | 71 | <DataTemplate> |
72 | 72 | <Border |
73 | 73 | BorderBrush="{DynamicResource {x:Static styles:VsBrushes.StartPageTextSubHeadingSelectedKey}}" |
74 | | - BorderThickness="0,0,1,0" |
75 | | - Margin="-6,-3,-6,-3"> |
76 | | - <StackPanel Margin="6,2,6,2" VerticalAlignment="Center"> |
| 74 | + BorderThickness="0 0 1 0" |
| 75 | + Margin="-6 -3 -6 -3"> |
| 76 | + <StackPanel Margin="6 2 6 2" VerticalAlignment="Center"> |
77 | 77 | <CheckBox |
78 | 78 | IsThreeState="True" |
79 | 79 | IsChecked="{Binding IsEmpty}" |
|
127 | 127 | </ListView.View> |
128 | 128 | </ListView> |
129 | 129 |
|
130 | | - <StackPanel Grid.Row="1" Margin="0,5,0,0" Orientation="Horizontal"> |
| 130 | + <StackPanel Grid.Row="1" Margin="0 5 0 0" Orientation="Horizontal"> |
131 | 131 | <Button |
132 | 132 | Command="{Binding Path=AddFilterCommand}" |
133 | 133 | ToolTip="Add filter" |
134 | | - Margin="0,0,4,0"> |
| 134 | + Margin="0 0 4 0"> |
135 | 135 | <Button.Content> |
136 | 136 | <vs:Image Source="KnownMonikers.NewFilter" Width="16" Height="16" /> |
137 | 137 | </Button.Content> |
|
140 | 140 | <Button |
141 | 141 | Command="{Binding Path=DeleteFilterCommand}" |
142 | 142 | ToolTip="Delete filter" |
143 | | - Margin="0,0,4,0"> |
| 143 | + Margin="0 0 4 0"> |
144 | 144 | <Button.Content> |
145 | 145 | <vs:Image Source="KnownMonikers.DeleteFilter" Width="16" Height="16" /> |
146 | 146 | </Button.Content> |
|
149 | 149 | <Button |
150 | 150 | Command="{Binding Path=MoveFilterUpCommand}" |
151 | 151 | ToolTip="Move up" |
152 | | - Margin="0,0,4,0"> |
| 152 | + Margin="0 0 4 0"> |
153 | 153 | <Button.Content> |
154 | 154 | <vs:Image Source="KnownMonikers.MoveUp" Width="16" Height="16" /> |
155 | 155 | </Button.Content> |
|
167 | 167 | <GroupBox |
168 | 168 | Grid.Row="2" |
169 | 169 | Header="Filter help" |
170 | | - Margin="0,5" |
| 170 | + Margin="0 5" |
171 | 171 | Padding="5"> |
172 | 172 | <StackPanel> |
173 | 173 | <TextBlock> |
|
0 commit comments