My datagridview flickers and is very slow while loading. I reflectored the datgridview from Microsoft and discovered that there is a back buffer property which is not visible from the winForm. How do I set this property?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
For some reason Microsoft put the DoubleBuffered property in there, but didn't allow us to turn it on. You can hijack the system by using SubClassing.
In your program you can then Build it and the new class should pop up in your toolbox. Once there you are free to drag it out and use it as if it were a normal DataGridView with better drawing capabilities. Hope this helps. |
|||||
|
|
I would use a listview, it does not have the same problems as a datagridview does. |
|||
|
|
|
I try to use datagridview's as little as possible as they are very complex. I would use a listbox as it populates much quicker. |
|||
|
|
|
How about trying a List and adding it programmatically to a multiline textbox. That is very fast and efficient.
|
|||
|
|