|
170 | 170 |
|
171 | 171 | <Style TargetType="{x:Type GridSplitter}"> |
172 | 172 | <Setter Property="Background" Value="{StaticResource ControlDefaultBorderBrush}" /> |
| 173 | + <Setter Property="Template"> |
| 174 | + <Setter.Value> |
| 175 | + <ControlTemplate TargetType="{x:Type GridSplitter}"> |
| 176 | + <Grid> |
| 177 | + <Button Padding="0" Margin="0" > |
| 178 | + <TextBlock Text="⁞" Foreground="{StaticResource ControlDefaultForeground}" /> |
| 179 | + </Button> |
| 180 | + <Rectangle Fill="#00FFFFFF" /> |
| 181 | + </Grid> |
| 182 | + </ControlTemplate> |
| 183 | + </Setter.Value> |
| 184 | + </Setter> |
| 185 | + |
| 186 | + |
173 | 187 | </Style> |
174 | 188 |
|
175 | 189 |
|
|
332 | 346 |
|
333 | 347 | <!--Button--> |
334 | 348 | <LinearGradientBrush x:Key="ButtonBackground" EndPoint="0,1" StartPoint="0,0"> |
335 | | - <GradientStop Color="#FF343434" Offset="0.0"/> |
| 349 | + <GradientStop Color="#FF212222" Offset="0.0"/> |
336 | 350 | <GradientStop Color="#FF2A2A2A" Offset="1.0"/> |
337 | 351 | </LinearGradientBrush> |
338 | 352 | <SolidColorBrush x:Key="ButtonForeground" Color="#FFC8C8C8"/> |
|
638 | 652 | </Grid.ColumnDefinitions> |
639 | 653 | <Popup x:Name="PART_Popup" AllowsTransparency="true" Grid.ColumnSpan="2" IsOpen="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource Mode=TemplatedParent}}" Margin="1" Placement="Bottom" PopupAnimation="{DynamicResource {x:Static SystemParameters.ComboBoxPopupAnimationKey}}"> |
640 | 654 | <theme:SystemDropShadowChrome x:Name="shadow" Color="Transparent" MinWidth="{Binding ActualWidth, ElementName=templateRoot}" MaxHeight="{TemplateBinding MaxDropDownHeight}"> |
641 | | - <Border x:Name="dropDownBorder" Background="{DynamicResource {x:Static SystemColors.WindowBrushKey}}" BorderBrush="{DynamicResource {x:Static SystemColors.WindowFrameBrushKey}}" BorderThickness="1"> |
| 655 | + <Border x:Name="dropDownBorder" Background="{StaticResource ComboBoxBackground}" BorderBrush="{DynamicResource {x:Static SystemColors.WindowFrameBrushKey}}" BorderThickness="1" > |
642 | 656 | <ScrollViewer x:Name="DropDownScrollViewer"> |
643 | 657 | <Grid x:Name="grid" RenderOptions.ClearTypeHint="Enabled"> |
644 | 658 | <Canvas x:Name="canvas" HorizontalAlignment="Left" Height="0" VerticalAlignment="Top" Width="0"> |
|
1219 | 1233 | <Setter Property="Background" Value="{StaticResource TabItemBackground}"/> |
1220 | 1234 | <Setter Property="BorderBrush" Value="{StaticResource TabItemBorder}"/> |
1221 | 1235 | <Setter Property="Margin" Value="0"/> |
1222 | | - <Setter Property="Padding" Value="6,2,6,2"/> |
| 1236 | + <Setter Property="Padding" Value="10,0,10,4"/> |
1223 | 1237 | <Setter Property="HorizontalContentAlignment" Value="Stretch"/> |
1224 | 1238 | <Setter Property="VerticalContentAlignment" Value="Stretch"/> |
1225 | 1239 | <Setter Property="Template"> |
|
1389 | 1403 | <Setter Property="Panel.ZIndex" Value="1"/> |
1390 | 1404 | <Setter Property="Margin" Value="-2,-2,-2,0"/> |
1391 | 1405 | <Setter Property="Opacity" TargetName="innerBorder" Value="1"/> |
1392 | | - <Setter Property="BorderThickness" TargetName="innerBorder" Value="1,1,1,0"/> |
| 1406 | + <Setter Property="BorderThickness" TargetName="innerBorder" Value="0,0,0,4"/> |
1393 | 1407 | <Setter Property="BorderThickness" TargetName="mainBorder" Value="1,1,1,0"/> |
1394 | 1408 | </MultiDataTrigger> |
1395 | 1409 | </ControlTemplate.Triggers> |
|
0 commit comments