Posted 15 years ago
by Jim Strav
Version: 9.2.0514
Platform: .NET 3.5
Environment: Windows Vista (32-bit)
I am creating a custom skin/theme for my application. I never set the ActiproSoftware.Windows.Themes.ThemeManager.CurrentTheme, so it remains null. I also tried setting it to Custom.
The brush DocumentTabForegroundNormalBrushKey cannot be overriden. The other 2 I've overriden work. The DocumentTabForegroundNormalBrushKey remains the default Black instead of the color White I've specified.
These work:This doesn't work:
[Modified at 02/07/2010 11:28 AM]
The brush DocumentTabForegroundNormalBrushKey cannot be overriden. The other 2 I've overriden work. The DocumentTabForegroundNormalBrushKey remains the default Black instead of the color White I've specified.
These work:
<SolidColorBrush x:Key="{x:Static adt:DockingCommonDictionary.DocumentTabBackgroundNormalBrushKey}"
Color="Black" />
<SolidColorBrush x:Key="{x:Static adt:DockingCommonDictionary.DocumentTabBorderNormalBrushKey}"
Color="Gray" />
<SolidColorBrush x:Key="{x:Static adt:DockingCommonDictionary.DocumentTabForegroundNormalBrushKey}"
Color="White" />