我有一个DataGridView
从列表中填充的。然后我column
在最后定义了一个链接,column
没有DataBound
说View
,如果满足条件,如何删除此链接文本。我有以下内容:
dgvReport.AutoGenerateColumns = false;
dgvReport.DataSource = queries;
//locals
Int32 lastColumnIndex = this.dgvReport.Columns.Count - 1;
//hide reads links for the null queries
for (int i=0; i < queries.Count; i++) {
if (queries[i].SomeID == null || queries[i].AnotherID == null) {
this.dgvReport.Rows[i].Cells[lastColumnIndex].Value = "";
}
}
这不起作用,我的列文本仍然显示View
。有任何想法吗?
编辑:lastColumnIndex 是 24,这确实是最后一列索引