0
A
回答
1
試試這個:
if (e.Row.RowType == DataControlRowType.DataRow)
{
int index = e.Row.RowIndex;
if(index>7)
{
dataGridView1.Rows(index).Visible = False
}
}
相關問題
- 1. 隱藏特定行後的所有行
- 2. Datagrid行隱藏,在wpf vb.net
- 3. 隱藏UITableViewCell的特定行
- 4. 隱藏DataGrid中的空行
- 5. WPF DataGrid隱藏選定的行?
- 6. 使用VB隱藏DataGrid asp.net中的特定行使用VB
- 7. ASP.NET Datagrid - 隱藏一個特定的行/列
- 8. 隱藏WPF DataGrid行錯誤
- 9. 隱藏特定數字後的所有表格行嗎?
- 10. ASP.NET在Datagrid行中顯示/隱藏段
- 11. 隱藏datagridview中特定行的列?
- 12. 如何隱藏Gridview中的特定行?
- 13. 隱藏表中的特定行嗎?
- 14. GridEditColumn上特定行的隱藏列
- 15. 如何隱藏完整的DataGrid行?
- 16. 隱藏在特定列中包含特定值的行
- 17. 使用DataTables插件隱藏特定行?
- 18. Handsontable - 隱藏特定行(按單元值)
- 19. 如何隱藏wpf datagrid行選擇器
- 20. WPF DataGrid |隱藏行驗證列
- 21. WPF DataGrid中隱藏RowDetails或取消行
- 22. Silverlight DataGrid導航和隱藏行
- 23. WPF DataGrid行添加代碼隱藏
- 24. 如何隱藏一個DataGrid明細行
- 25. 如何隱藏/取消隱藏特定表格單元格/行
- 26. 在特定時間後隱藏按鈕
- 27. 是否可以在WPF DataGrid中隱藏特定的ColumnHeader?
- 28. 當特定列的行值爲空時,JQuery隱藏行
- 29. 在Jquery特定行之後計數行
- 30. 隱藏跨行數
你想隱藏起來,或不使它們呢? – stuartd
您能否提供一些代碼示例? –
我只想在綁定數據表中的數據之後隱藏特定數量的行,在本例中爲7。 –