Browse Source

Change background color of inactive pads.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2474 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 19 years ago
parent
commit
e66c63052e
  1. 2
      src/AddIns/Misc/StartPage/Project/Src/ICSharpCodePage.cs
  2. 7
      src/Libraries/DockPanel_Src/WinFormsUI/Docking/VS2005DockPaneCaption.cs
  3. 4
      src/Libraries/DockPanel_Src/WinFormsUI/Properties/AssemblyInfo.cs
  4. 10
      src/Libraries/DockPanel_Src/WinFormsUI/WinFormsUI.csproj
  5. 4
      src/Libraries/DockPanel_Src/patchnotes.txt

2
src/AddIns/Misc/StartPage/Project/Src/ICSharpCodePage.cs

@ -185,7 +185,7 @@ namespace ICSharpCode.StartPage @@ -185,7 +185,7 @@ namespace ICSharpCode.StartPage
public ICSharpCodePage()
{
ColorScheme = ICSharpCode.StartPage.ColorScheme.green;
ColorScheme = ICSharpCode.StartPage.ColorScheme.blue;
TopMenu = new List<MenuItem>();
PopulateTopMenu();

7
src/Libraries/DockPanel_Src/WinFormsUI/Docking/VS2005DockPaneCaption.cs

@ -295,12 +295,7 @@ namespace WeifenLuo.WinFormsUI.Docking @@ -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;
}
}

4
src/Libraries/DockPanel_Src/WinFormsUI/Properties/AssemblyInfo.cs

@ -18,8 +18,8 @@ using System.Diagnostics.CodeAnalysis; @@ -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")]

10
src/Libraries/DockPanel_Src/WinFormsUI/WinFormsUI.csproj

@ -13,12 +13,15 @@ @@ -13,12 +13,15 @@
<AssemblyOriginatorKeyFile>..\..\..\Main\ICSharpCode.SharpDevelop.snk</AssemblyOriginatorKeyFile>
<DelaySign>False</DelaySign>
<AssemblyOriginatorKeyMode>File</AssemblyOriginatorKeyMode>
<OutputPath>..\..\..\..\bin\</OutputPath>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<NoStdLib>False</NoStdLib>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DebugType>Full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@ -26,7 +29,6 @@ @@ -26,7 +29,6 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@ -199,4 +201,4 @@ @@ -199,4 +201,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>

4
src/Libraries/DockPanel_Src/patchnotes.txt

@ -7,3 +7,7 @@ Patch #1: @@ -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.

Loading…
Cancel
Save