tags:

views:

1527

answers:

2

If I create a custom control with WPF, how can I provide styles for the control that match the currently applied theme (Aero, Luna, Classic, etc.)?

For example I'd like to apply the following when using Aero:

<Style>
    <Setter Property="Background" Value="White"/>
</Style>

But then apply a different style when using Luna:

<Style>
    <Setter Property="Background" Value="#DFDFDF"/>
</Style>

Can I somehow extend the base themes to provide support for my new control?

A: 

You can use different themes in WPF by loading/unloading resource dictionaries. These dictionaries should contain the styles for your controls. When you swap out dictionaries, WPF will apply the styles to your controls.

for example if this were in WhiteStyle.xaml and you loaded it, your textblocks would all display text in a white-colored font.

<Style TargetType="TextBlock">
    <Setter Property="Foreground" Value="White"/>
</Style>

if you swapped it out for BlackStyle.xaml which contains

<Style TargetType="TextBlock">
    <Setter Property="Foreground" Value="Black"/>
</Style>

your textblocks would display text in a black-colored font. WPF handles alot of the details for us, we just have to tell it what the details are.

Swapping out resource dictionaries is realatively simple, and I leave that to you to figure out. Googling "WPF Themes" is a good place to start.

Muad'Dib
+5  A: 

Some links that might be prove helpful:

http://arbel.net/blog/archive/2006/11/03/Forcing-WPF-to-use-a-specific-Windows-theme.aspx

http://www.browsoft.com/tutorials/DefaultTheme.html

http://blogs.msdn.com/wpfsdk/archive/2007/07/31/using-themes-with-custom-controls.aspx

Basically you create resource dictionaries for your custom controls named like this:

Classic.xaml (“Classic” Windows 9x/2000 look on Windows XP.)
Luna.NormalColor.xaml (Default blue theme on Windows XP.)
Luna.Homestead.xaml (Olive theme on Windows XP.)
Luna.Metallic.xaml (Silver theme on Windows XP.)
Royale.NormalColor.xaml (Default theme on the Windows XP Media Center Edition operating system.)
Aero.NormalColor.xaml (Default theme on the Windows Vista operating system.)

Put the different styles for your controls in those files and they will be loaded based on the current theme of the OS.

Jason Miesionczek
Those links are helpful, thanks. The key point for me was a change in AssemblyInfo.cs - switching the [ThemeInfo] attribute's themeDictionaryLocation from 'None' to 'SourceAssembly'.
A J Lane