vote up 0 vote down star

How to add child rows in datagrid c#.net windows forms?

flag
Are you asking about databinding? – Bloodhound Sep 19 '08 at 14:16

5 Answers

vote up 0 vote down

what's third party control? i don't understand :(

link|flag
vote up 0 vote down

If you are looking for a nested table, you'll have to go with a third-party control. The DataGridView doesn't support it.

link|flag
It's not pretty, but you can nest: you create a templateField column in your datagridview, edit the template and put a gridview inside it. – theo Sep 19 '08 at 14:41
vote up 0 vote down
DataTable myDataTable = new DataTable();
DataGridView myGridView = new DataGridView();
myGridView.DataSource = myDataTable;
DataRow row = myDataTable.Rows.Add(1, 2, 3, 4, 5); //This adds the new row
link|flag
vote up 0 vote down

Usually you bind the datagrid to a dataset. Could you please clarify what you are looking for so that we can get into more detail?

link|flag
vote up 2 vote down

I'm not sure if this is what you're asking, but if you want to append rows you're easiest way is to append them to whatever DataSource you're using before you DataBind()

If this wasn't what you're after, please provide more detail.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.