最近用到MDI窗体,每当显示子窗体的时候会有一次“闪烁”,每次在show()子窗体的时候都会调用子窗体构造函数重绘窗体,其中须要将子窗体的尺寸调整到我在程序中设置的大小,不管我这样设置,这个窗口大小变化总会在show()的时候显示出来,设置双缓冲、先隐藏窗体等启动以后再显示、借助定时器设置窗体的opacity属性,问题依旧,一个偶然的机会发现遇到这个问题的哥们儿还很多,各类国家的程序员都有,其中一个哥们提供了一种一劳永逸的解法,完全的解决了个人问题,天降救世主啊,为了这个问题我茶饭不思了好多天,现将方法分享一下,谢谢这位美国小伙子:程序员
http://social.msdn.microsoft.com/forums/en-US/winforms/thread/aaed00ce-4bc9-424e-8c05-c30213171c2c/ide
将如下代码块加在父窗体中的任意位置函数
protected override CreateParams CreateParamsspa
{.net
getorm
{blog
CreateParams cp = base.CreateParams;ci
cp.ExStyle |= 0x02000000;get
return cp;it
}
}
原理很简单,引用如下原话:
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. --------------------- 原文:https://blog.csdn.net/onejune2013/article/details/7664323