Friday, November 07, 2008 1:57 PM
rudi
WPF Themes Update
I updated the WPF Themes library to now allow 3 methods of applying themes:
1. Application Level
Application.Current.ApplyTheme(theme);
2. Window Level
this.ApplyTheme(theme);
3. Using Attached Properties (Window Level)
xmlns:themes="clr-namespace:WPF.Themes;assembly=WPF.Themes"
themes:ThemeManager.Theme="ExpressionDark"
The ThemeManager has extension methods to quickly apply themes and if you want to do it all declaratively, use the new attached property!!!
PS. I also included a variant of the UXMusingsRed theme (Called UXMusingsGreen)
Other stuff fixed
- All the themes scroll bars now work
- Added ComboBoxItem styles for the UXMusingsRed & UXMusingsGreen themes
Filed under: Free, WPF Themes, Style, WPF