Ejemplo n.º 1
0
        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;
            }
        }
Ejemplo n.º 2
0
        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);
            }
        }
Ejemplo n.º 3
0
 private static extern int DllGetVersion(ref DLLVERSIONINFO s);
Ejemplo n.º 4
0
 private static extern int DllGetVersion(ref DLLVERSIONINFO s);