我正在努力让我的应用程序成为一个主题 - 这很简单,如下所示:http://arbel.net/blog/archive/2006/11/03/Forcing-WPF-to-use-a-specific-Windows-theme.aspx
但是,我不知道我现在正在使用什么主题。我正在使用Windows XP默认主题,无论可能是什么。那篇文章说
指定版本很重要 和公钥令牌
......我从哪里获得这些信息?
答案 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中只加载了一个主题。