This repository was archived by the owner on Jun 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
src/GitHub.VisualStudio.UI/Views/Dialog Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 4545 </Window .Resources>
4646 <Window .ContentTemplate>
4747 <DataTemplate >
48- <Border MouseDown =" Border_MouseDown" BorderThickness =" 1" BorderBrush =" {DynamicResource {x:Static vs:EnvironmentColors.ToolWindowBorderBrushKey}}" >
48+ <Border MouseDown =" Border_MouseDown"
49+ BorderThickness =" 1"
50+ Background =" {DynamicResource {x:Static vs:EnvironmentColors.ToolWindowBackgroundBrushKey}}"
51+ BorderBrush =" {DynamicResource {x:Static vs:EnvironmentColors.ToolWindowBorderBrushKey}}" >
4952 <DockPanel >
5053 <!-- close button and padding -->
5154 <shellControls : GlyphButton x : Uid =" button_Close"
Original file line number Diff line number Diff line change 11using System ;
2+ using System . Windows ;
3+ using System . Windows . Input ;
24using GitHub . ViewModels . Dialog ;
35using Microsoft . VisualStudio . PlatformUI ;
46
@@ -16,12 +18,12 @@ public GitHubDialogWindow(IGitHubDialogWindowViewModel viewModel)
1618 InitializeComponent ( ) ;
1719 }
1820
19- void CloseButton_Click ( object sender , System . Windows . RoutedEventArgs e )
21+ void CloseButton_Click ( object sender , RoutedEventArgs e )
2022 {
2123 Close ( ) ;
2224 }
2325
24- void Border_MouseDown ( object sender , System . Windows . Input . MouseButtonEventArgs e )
26+ void Border_MouseDown ( object sender , MouseButtonEventArgs e )
2527 {
2628 DragMove ( ) ;
2729 }
You can’t perform that action at this time.
0 commit comments