一道简单的C#选择题

你正在创建一个背景显示一个图像的自定义控件。你注意到,当控件改变尺寸并重新绘制时,
背景图像出现闪烁现象。你为了去移除这种闪烁现象,你应该通过下面那三段代码实现?(每
个答案代表解决方案的一部分) 
A. this.SetStyle(ontrolStyles.OptimizedDoubleBuffer, true);
B. this.SetStyle(ontrolStyles.AllPaintingInWmPaint, true);
C. this.SetStyle(ontrolStyles.UserPaint, true); 
D. this.SetStyle(ontrolStyles.ResizeRedraw, true);
E. this.SetStyle(ontrolStyles.Opaque, true);

答案:
A B D

A:OptimizedDoubleBuffer:缓存图像,用来减少闪烁
B:AllPaintingInWmPaint:强行忽略WM_ERASEBKGND消息,减少闪烁
C:UserPaint:控件自行运行Paint事件
D:ResizeRedraw:控件大小改变后,强制刷新(默认不刷新)
E:Opaque:不显示背景

你可能感兴趣的:(c)