Adding Row in DataGrid View using C# [WIndows Form]
I am making a C# windows application where i have to add information in the grid view rows as i get them from ne开发者_Go百科twork.
Here is Pseudocode about what i am doing.
while(getting info from network until there is no more info)
{
// here i have to add the info in data grid, how i should do that?
}
Have a look at
- Walkthrough: Creating an Unbound Windows Forms DataGridView Control
- C# DataGridView Tips and Secrets
- Programmatically Adding Rows to a Grid
- adding rows to a data grid view
精彩评论