How to adjust row height in datagrid at runtime in C# .net? -


how adjust row height in datagrid @ runtime in c# .net?

loop through rows , change it, example:

foreach (datagridviewrow row in datagridview1.rows) {     row.height -= 2; } 

Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -