ListView.DoubleBuffered Property
.NET Framework 4
This member overrides Control.DoubleBuffered, and more complete documentation might be available in that topic.
Gets or sets a value indicating whether this control should redraw its surface using a secondary buffer to reduce or prevent flicker.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Why, oh why...
Why, oh why, is this property protected? It would be massively useful to be able to set this property on a generic ListView in order to eliminate flicker when adding or deleting items. Instead, I have to implement my own class solely for the purpose of setting this property to True.
- 3/1/2012
- PeterBStewart