Let say I'll create a DataGridView with four columns of types TextBox, Button, ComboBox, and Link. How would I populate something like this?
A:
Check out the DataGridView.Rows property.
From MSDN:
You can use the Rows collection to manually populate a DataGridView control instead of binding it to a data source.
Austin Salonen
2010-03-10 17:16:26
A:
I actually found an example here: http://msdn.microsoft.com/en-us/library/y0wfd4yz.aspx I was surprise that it was difficult to find such example :-/
flamey
2010-03-12 11:46:01