zoukankan      html  css  js  c++  java
  • C#窗体加载和控件加载不同步导致控件闪烁

    窗体加载和控件加载不同步导致的控件闪烁现象:
    // 代码块加在父窗体中的任意位置,解决窗体加载和控件加载不同步导致的控件闪烁问题
            protected override CreateParams CreateParams
            {
                get
                {
                    CreateParams cp = base.CreateParams;
                    cp.ExStyle |= 0x02000000;
                    return cp;
                }
            }

     原理很简单,引用以下原话:
         A form that has a lot of controls takes a long time to paint.  Especially the Button control in its default style is expensive.
     Once you get over 50 controls, it starts getting noticeable.  The Form class paints its background first and leaves "holes" where the controls need to go.  
    Those holes are usually white, black when you use the Opacity or TransparencyKey property.  Then each control gets painted, filling in the holes.  
    The visual effect is ugly and there‘s no ready solution for it in Windows Forms.  Double-buffering can‘t solve it as it only works for a single control, not a composite set of controls.
     I discovered a new Windows style in the SDK header files, available for Windows XP and (presumably) Vista: WS_EX_COMPOSITED.
     With that style turned on for your form, Windows XP does double-buffering on the form and all its child controls. 

  • 相关阅读:
    友链
    P2572 [SCOI2010]序列操作
    「THP3考前信心赛」解题报告
    DP中的树上边/点覆盖问题
    P3413 SAC#1
    luoguP6754 [BalticOI 2013 Day1] Palindrome-Free Numbers
    睿智错误
    常见套路?
    奇怪的点子
    最近做过一些比较好的题
  • 原文地址:https://www.cnblogs.com/qiantao/p/9411431.html
Copyright © 2011-2022 走看看