zoukankan      html  css  js  c++  java
  • 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();
            }

        }

     问题解决。

  • 相关阅读:
    SpringMvc完成ajax功能
    接收的参数为日期类型
    Mybatis的逆向工程(generator)以及分页助手(pageHelper)
    springMVC静态资源的映射
    Mybatis框架
    写一个简单的SpringMvc的demo
    SpringMvc流程
    controller进行数据保存以及如何进行重定向跳转
    我爱C语言
    三列布局中有两列内容固定
  • 原文地址:https://www.cnblogs.com/teyond/p/2486455.html
Copyright © 2011-2022 走看看