Win32 GUI flickering on resize

前端 未结 4 1427
旧巷少年郎
旧巷少年郎 2021-01-19 02:04

I have a Win32 GUI program with a tab control, each tab having a list view control. There is massive flickering whenever the window is resized. I\'ve tried the following thi

4条回答
  •  说谎
    说谎 (楼主)
    2021-01-19 02:57

    I may be stating the obvious, but I thought double buffering is the solution to Win32 flickers. I'm a Java Developer and it has been a while sine I wrote win32 so please let me know if I'm talking nonsense

    Here is the how to: http://www.gamedev.net/community/forums/topic.asp?topic_id=411559

    Here is some sampe code: http://www.codeproject.com/KB/cpp/DoubleBuffering.aspx

    Here is the .NET equivalent question (?): How to prevent a Windows Forms TextBox from flickering on resize?

提交回复
热议问题