public bool _IsAppThemed() { try { // Check which version of ComCtl32 thats in use.. var version = new DLLVERSIONINFO(); version.cbSize = Marshal.SizeOf(typeof(DLLVERSIONINFO)); int ret = DllGetVersion(ref version); // If MajorVersion > 5 themes are allowed. if (version.dwMajorVersion >= 6) { return(true); } else { return(false); } } catch (Exception) { return(false); } }
private static extern int DllGetVersion(ref DLLVERSIONINFO s);