using System; using System.Collections.Generic; using System.Linq; using System.Text; using Sheng.Winform.Controls.Win32; namespace Sheng.Winform.Controls.Kernal { public static class EnvironmentHelper { /// /// 是否支持 Windows Vista 以上的玻璃效果 /// public static bool SupportAreo { get { if (Environment.OSVersion.Version.Major < 6) { return false; } return true; } } /// /// 是否打开了玻璃效果 /// public static bool DwmIsCompositionEnabled { get { return DwmApi.DwmIsCompositionEnabled(); } } /// /// 获取应用程序主窗体 /// public static System.Windows.Forms.Form MainForm { get; set; } } }