Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用数据集将数据库连接到 DataGridView 并设置:
DataGridView.autogenerate=false
然后我使用 gui 属性逐列添加,然后我将其中一列设置为复选框。
首先,我想将复选框的值设置为 true 或 false,然后检查该值是否为 true,如果为 true,那么我想获取另一列但在同一行中的值,然后隐藏当前行。
首先,您需要检查该单元格是否被选中。
if (DataGridViewRow.Cells[CellNumber].Value != null) { if ((Boolean)DataGridViewRow.Cells[CellNumber].Value == true) { //Get other cell value } }
完成此操作后,您可以隐藏该行。
DataGridViewRow.Visible = false;