From e66c63052ed5c43410e42933e1c6ecab3875abbf Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Thu, 5 Apr 2007 18:11:12 +0000 Subject: [PATCH] Change background color of inactive pads. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2474 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../Misc/StartPage/Project/Src/ICSharpCodePage.cs | 2 +- .../WinFormsUI/Docking/VS2005DockPaneCaption.cs | 7 +------ .../WinFormsUI/Properties/AssemblyInfo.cs | 4 ++-- .../DockPanel_Src/WinFormsUI/WinFormsUI.csproj | 10 ++++++---- src/Libraries/DockPanel_Src/patchnotes.txt | 4 ++++ 5 files changed, 14 insertions(+), 13 deletions(-) diff --git a/src/AddIns/Misc/StartPage/Project/Src/ICSharpCodePage.cs b/src/AddIns/Misc/StartPage/Project/Src/ICSharpCodePage.cs index d2469e952f..4e78a23ef6 100644 --- a/src/AddIns/Misc/StartPage/Project/Src/ICSharpCodePage.cs +++ b/src/AddIns/Misc/StartPage/Project/Src/ICSharpCodePage.cs @@ -185,7 +185,7 @@ namespace ICSharpCode.StartPage public ICSharpCodePage() { - ColorScheme = ICSharpCode.StartPage.ColorScheme.green; + ColorScheme = ICSharpCode.StartPage.ColorScheme.blue; TopMenu = new List(); PopulateTopMenu(); diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/VS2005DockPaneCaption.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/VS2005DockPaneCaption.cs index 6213f1e99b..a4860fe4eb 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/VS2005DockPaneCaption.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/VS2005DockPaneCaption.cs @@ -295,12 +295,7 @@ namespace WeifenLuo.WinFormsUI.Docking { get { - string colorScheme = VisualStyleInformation.ColorScheme; - - if (colorScheme == "HomeStead" || colorScheme == "Metallic") - return SystemColors.GradientInactiveCaption; - else - return SystemColors.GrayText; + return SystemColors.Control; } } diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Properties/AssemblyInfo.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Properties/AssemblyInfo.cs index dcc2d80dbe..37b44fbfdf 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Properties/AssemblyInfo.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Properties/AssemblyInfo.cs @@ -18,8 +18,8 @@ using System.Diagnostics.CodeAnalysis; [assembly: Guid("9d690ef9-ce19-4c69-874c-e24d8eb36aff")] -[assembly: AssemblyVersion("2.0.*")] -[assembly: AssemblyFileVersion("2.0.2.0")] +[assembly: AssemblyVersion("2.0.2.1")] +[assembly: AssemblyFileVersion("2.0.2.1")] [module: SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Scope = "namespace", Target = "WeifenLuo.WinFormsUI.Docking", MessageId = "Weifen")] [module: SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Scope = "namespace", Target = "WeifenLuo.WinFormsUI.Docking", MessageId = "Luo")] diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/WinFormsUI.csproj b/src/Libraries/DockPanel_Src/WinFormsUI/WinFormsUI.csproj index efa5d7c9c7..0c3d86c33a 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/WinFormsUI.csproj +++ b/src/Libraries/DockPanel_Src/WinFormsUI/WinFormsUI.csproj @@ -13,12 +13,15 @@ ..\..\..\Main\ICSharpCode.SharpDevelop.snk False File + ..\..\..\..\bin\ + False + False + false true - full + Full false - bin\Debug\ TRACE;DEBUG prompt 4 @@ -26,7 +29,6 @@ pdbonly true - bin\Release\ TRACE prompt 4 @@ -199,4 +201,4 @@ --> - \ No newline at end of file + diff --git a/src/Libraries/DockPanel_Src/patchnotes.txt b/src/Libraries/DockPanel_Src/patchnotes.txt index ed242306a0..7c1a32c110 100644 --- a/src/Libraries/DockPanel_Src/patchnotes.txt +++ b/src/Libraries/DockPanel_Src/patchnotes.txt @@ -7,3 +7,7 @@ Patch #1: Close documents with middle click - in DockPaneStripBase.cs Remove redundant finalizers - in AutoHideStripBase.cs, DockPaneStripBase.cs Committed in revision 2473. + +Patch #2: + Changed background color of inactive pads. + Committed in revision 2474.