I have noticed that setting row height in DataGridView control is slow. Is there a way to make it faster?
|
|
If you can, try setting the height before you bind the control. If you can't do that, try making the control hidden before setting the height. |
||
|
|
|
|
This works in most cases but I'm not sure if this is what you are looking for... Try setting up the RowTemplate and use that to set the rows height.
Here is also a nice page on Windows Forms Programming Best Practices for Scaling the Windows Forms DataGridView Control which you may find to be handy: http://msdn.microsoft.com/en-us/library/ha5xt0d9.aspx |
|||
|
|
|
|
What's caused similar "layout" delays for myself was related to the AutoSizeRowsMode and AutoSizeColumnsMode
will likely fix it. Also try ColumnHeadersHightSizeMode and AllowUserToResizeRows |
||
|
|
