• WIN7下使用DotNetBar,关闭Aero效果,使用Office2007Form皮肤


    在窗体属性中有个EnableGlass属性,设置为False即可。

    eg:

    //使用API
    namespace WindowsFormsApplication1
    {
        static class Program
        {
            [DllImport("dwmapi.dll", EntryPoint = "DwmEnableComposition")]
            private extern static  uint Win32DwmEnableComposition(uint uCompositionAction);

            /// <summary>
            /// 应用程序的主入口点。
            /// </summary>
            [STAThread]
            static void Main()
            {
                try
                {
                    Win32DwmEnableComposition(0); // 关闭aero效果
                }
                catch (Exception ex) { System.Diagnostics.Debug.WriteLine(ex.StackTrace+":"+ex.Message ); }
                finally
                {
                    Application.EnableVisualStyles();
                    Application.SetCompatibleTextRenderingDefault(false);   
                   Application.Run(new Form1());
         }
            }
        }
    }


        public partial class Form1 : Office2007Form
        {

            public Form1()
            {
                InitializeComponent();
            }

        }

     问题解决。

  • 相关阅读:
    oracle(八)块清除
    oracle(七)索引
    oracle(六) physical read and logical read
    oracle动态视图(一)stat
    oracle(五)tkprof 使用 transient kernal profile 侧面 轮廓
    dbms_stats.gather_table_stats详解
    oracle(四) 常用语句
    oracle(三) SQL语句
    [Swift]LeetCode269. 外星人词典 $ Alien Dictionary
    [Mac]如何让两个窗口各占半个屏幕
  • 原文地址:https://www.cnblogs.com/teyond/p/2486455.html
Copyright © 2020-2023  润新知