简体   繁体   中英

how to make a grid to add rows in a certain visual state? (UWP)

I want to have a Grid that automatically adds rows or columns if a visual state was triggered. I have tried everything that I know and nothing is working!

Did you tried something like that:

DataGridViewRow row = (DataGridViewRow)yourDataGridView.Rows[0].Clone();
row.Cells["Column2"].Value = "XYZ";
row.Cells["Column6"].Value = 50.2;
yourDataGridView.Rows.Add(row);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM