如何判断我正在使用的Windows主题?

时间:2010-06-04 20:07:47

标签: c# wpf windows windows-themes

我正在努力让我的应用程序成为一个主题 - 这很简单,如下所示:http://arbel.net/blog/archive/2006/11/03/Forcing-WPF-to-use-a-specific-Windows-theme.aspx

但是,我不知道我现在正在使用什么主题。我正在使用Windows XP默认主题,无论可能是什么。那篇文章说

  

指定版本很重要   和公钥令牌

......我从哪里获得这些信息?

1 个答案:

答案 0 :(得分:5)

要获取主题名称,您可以调用非托管GetCurrentThemeName方法:

public string GetThemeName()
{
  StringBuilder themeNameBuffer = new StringBuilder(260);
  var error = GetCurrentThemeName(themeNameBuffer, themeNameBuffer.Capacity, null, 0, null, 0);
  if(error!=0) Marshal.ThrowExceptionForHR(error);
  return themeNameBuffer.ToString();
}

[DllImport("uxtheme.dll", CharSet=CharSet.Auto)]
public static extern int GetCurrentThemeName(StringBuilder pszThemeFileName, int dwMaxNameChars, StringBuilder pszColorBuff, int dwMaxColorChars, StringBuilder pszSizeBuff, int cchMaxSizeChars);

您可以通过右键单击GAC中的主题.dll(例如PresentationFramework.Aero)(在Exporer中打开c:\ Windows \ Assembly)找到版本和公钥令牌,或者您可以使用代码执行此操作。只需使用AppDomain.CurrentDomain.LoadedAssemblies遍历所有已加载的程序集并找到所需的程序集:

foreach(Assembly a in AppDomain.CurrentDomain.LoadedAssemblies)
  if(a.Name.StartsWith("PresentationFramework."))
    return a.FullName;

请注意,循环加载的程序集还会告诉您当前主题名称​​如果当前AppDomain中只加载了一个主题。