在C#Windows應用程序中,我使用DataGridView來顯示所有數據。我想在用戶單擊添加新行按鈕時向網格添加新行。我怎樣才能做到這一點?如何使用按鈕向DataGridView添加新行
2
A
回答
3
操縱在Windows行窗體DataGridView控件:http://msdn.microsoft.com/en-us/library/ddtce152.aspx
按鈕的onclick使用dataGridView.Rows.Add加行作爲示例如下所示
// Populate the rows.
string[] row1 = new string[]{"Meatloaf",
"Main Dish", boringMeatloaf, boringMeatloafRanking};
string[] row2 = new string[]{"Key Lime Pie",
"Dessert", "lime juice, evaporated milk", "****"};
string[] row3 = new string[]{"Orange-Salsa Pork Chops",
"Main Dish", "pork chops, salsa, orange juice", "****"};
string[] row4 = new string[]{"Black Bean and Rice Salad",
"Salad", "black beans, brown rice", "****"};
string[] row5 = new string[]{"Chocolate Cheesecake",
"Dessert", "cream cheese", "***"};
string[] row6 = new string[]{"Black Bean Dip", "Appetizer",
"black beans, sour cream", "***"};
object[] rows = new object[] { row1, row2, row3, row4, row5, row6 };
foreach (string[] rowArray in rows)
{
dataGridView.Rows.Add(rowArray); // addding row
}
0
在你的onclick事件中,你是在調用DataTable.Rows.Add()還是類似的?
相關問題
- 1. 向Winforms DataGridView添加按鈕
- 2. 向DataGridView添加新行C#
- 3. C# - 向DataGridView添加新行
- 4. 如何向Eclipse IDE添加新按鈕
- 5. 如何使用按鈕刷新datagridview?
- 6. 向DataGridView添加行
- 7. 使用按鈕動態添加新行
- 8. 如何在按鈕上添加新行?
- 9. 如何讓新添加按鈕運行
- 10. 使用DataSource向datagridview添加行
- 11. 通過KeyDown向DataGridView添加新行
- 12. 使用帶按鈕的td向DataTable添加新行
- 13. 在有界的dataGridView上添加一個新行按鈕單擊
- 14. 添加新行datagridview使用默認值
- 15. 如何在「添加」按鈕單擊時向WPF dataGrid添加行?
- 16. 如何使用Angular.js打開新行後添加刪除按鈕
- 17. 如何將新行添加到datagridview?
- 18. C#使用關係向綁定的datagridview添加新行
- 19. 如何使用文本框和按鈕在datagridview中添加一行
- 20. 如何向ASP.NET中的DATAGRIDVIEW添加新行
- 21. 如何在嚮導頁面中添加新按鈕並更新按鈕名稱
- 22. 如何使用jquery添加刪除和添加按鈕的行?
- 23. 如何向使用Python的Outlook添加按鈕(加載項)
- 24. 使用ActionBarSherlock向ActionBar添加按鈕
- 25. 如何使添加按鈕
- 26. 向jQuery添加刷新按鈕Datatable
- 27. 用按鈕添加新行到javafx tableview
- 28. 如何在datagridview的單元格單擊事件上向datagridview添加新行?
- 29. Winform DataGridView UserAddedRow添加新行
- 30. 新行不添加到datagridview
@Pranay蛙::如果我想添加無限的行然後我做什麼? – 2013-08-02 20:42:47