1. 程式人生 > >winform 解決介面閃動、提升載入速度

winform 解決介面閃動、提升載入速度

說明:

從一個技術交流群裡獲得,經驗證效果不錯。

//作用 加快介面載入 

       protected override CreateParams CreateParams 
        {
            get
            {
                CreateParams cp = base.CreateParams;
                cp.ExStyle |= 0x02000000;
                return cp;
            }
        }