How to fix nested winform control flicker issues

前端 未结 4 1426
忘了有多久
忘了有多久 2021-02-08 02:39

I am currently working on a program that uses a fairly complex structure of nested winform controls which changes dynamically as a user makes certain selections. To go into more

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-08 03:04

    In addition to @tommieb75's suggestion for double buffering, you can try and see if your root level controls have BeginUpdate/EndUpdate method pairs. These should help repress the repaints in between the calls.

提交回复
热议问题