Click here to Skip to main content
Licence 
First Posted 18 Mar 2004
Views 62,953
Bookmarked 24 times

Detecting XP Themes

By | 18 Mar 2004 | Article
How To Detect Theme Settings in Windows XP

Sample image

Introduction

Support for XP Themes is known to be somewhat haphazard - the Explorer bypasses the theme DLL, UxTheme, for example. Microsoft refuses to open themes to developers for fear rampant new themes will cause "application incompatibilities."

I choose not to mess with UxTheme and the like, but I would like my applications to be aware when themes are in use. Because there are only four, at least right now, it is feasible to write code that reacts to the user's choice of theme. The user can choose "Windows Classic" or "Windows XP." If they choose the latter, they can select Blue (the default), Olive Green, or Silver color schemes.

[Added]

Thanks to Konrad Windszus and Rene Koenig, who point out that peeking in the registry is brittle and likely to break in future versions. That's an important disclaimer, along with this: Do not modify the registry hoping to change the theme.

I revised the code to illustrate Konrad's suggestion of calling UxTheme's IsThemeActive() method and Rene's IsAppThemed(). I still can't find an easy way to get UxTheme to tell me whether the user has chosen Blue, Green, or Silver.

Use the Registry

The answer is found in the registry, but it's not obvious. To save you experimenting, I'll just tell you:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ThemeManager

ThemeActive is "1" if Windows XP, "0" if Windows Classic.

If ThemeActive is "1", ColorName will be "NormalColor" for blue, "HomeStead" for olive green, or "Metallic" for silver. (All of these data values are type REG_SZ, or strings, by the way.)

The following C# code illustrates reading the settings. Other languages are quite similar.

using System;
using System.Runtime.InteropServices;
using Microsoft.Win32;
class Class1 { 
static void Main()

{
    Console.WriteLine("CurrentTheme returns {0}", CurrentTheme());
    Console.WriteLine("UxTheme::IsThemeActive returns {0}", IsThemeActive());
    Console.WriteLine("UxTheme::IsAppThemed returns {0}", IsAppThemed());
    Console.Read();

}
public enum Theme

{
    WindowsClassic,
    XPBlue,
    XPGreen,
    XPSilver

}
public static Theme CurrentTheme()

{
    RegistryKey key = 
        Registry.CurrentUser.OpenSubKey(
            @"Software\Microsoft\Windows\CurrentVersion\ThemeManager");
    if (key != null) 
    {
        if ("1" == (string) key.GetValue("ThemeActive"))
        {
            string s = (string) key.GetValue("ColorName");
            if (s != null)
            {
                if (String.Compare(s, "NormalColor", true) == 0)
                    return Theme.XPBlue;
                if (String.Compare(s, "HomeStead", true) == 0)
                    return Theme.XPGreen;
                if (String.Compare(s, "Metallic", true) == 0)
                    return Theme.XPSilver;
            }
        } 
    }
    return Theme.WindowsClassic;

}
[DllImport("UxTheme")]

static extern bool IsThemeActive();
[DllImport("UxTheme")]

static extern bool IsAppThemed();
}    // end Class1

References

This article was inspired by an anonymous CodeProject article on XP-style buttons: http://www.codeproject.com/cs/miscctrl/JPEnhancedXPButton.asp, based on the work of someone named Joaqs. The anonymous article adds a "BtnStyle" property for the programmer to specify Blue, Silver, or Olive, but offers no hints how to detect the current state.

History

  • 03/21/04 ad Revised
  • 03/19/04 ad Initial

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Alastair Dallas

Web Developer

United States United States

Member

Alastair Dallas is a programmer, systems architect, and information designer with over 20 years experience at companies including Ashton-Tate, Lotus, Netscape, Documentum, and a wide variety of startups. Languages include C#, C, C++, Java, JavaScript, Perl, Python, and VB (in alphabetical order) as well as DHTML, XML, and related technologies. He has written 3 books, 2 on computer topics, and is President of Infospect Press.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralWM_THEMECHANGED Notification PinmemberDmex8712:38 14 Mar '10  
QuestionThe managed way? Pinmembermiloush.uam5:10 9 Feb '06  
AnswerRe: The managed way? PinmemberAsh26:22 30 Mar '06  
u r using .net 2.0..RenderWithVisualStyles etc is not there in .Net 1.x
GeneralProblem with some visual components PinmemberCarlos Eugênio X. Torres8:05 16 Dec '05  
Generalan easier way with .net 1.1 Pinmemberbenoxoft12:51 28 Apr '05  
GeneralEasier way via IsThemeActive() PinmemberKonrad Windszus1:05 20 Mar '04  
GeneralRe: Easier way via IsThemeActive() PinmemberRene Koenig2:45 20 Mar '04  
GeneralRe: Easier way via IsThemeActive() PinmemberKonrad Windszus2:58 21 Mar '04  
GeneralRe: Easier way via IsThemeActive() PinmemberDavid Pritchard9:23 21 May '04  
GeneralInterresting! PinmemberCarl Mercier15:44 19 Mar '04  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 19 Mar 2004
Article Copyright 2004 by Alastair Dallas
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid