gpt4 book ai didi

vb.net - 手动添加 DataGridViewRow 导致空单元格

转载 作者:行者123 更新时间:2023-12-04 18:49:22 27 4
gpt4 key购买 nike

这有效:

DataGridView.Rows.Add("Bla Bla Bla", value1, value2)

但如果我这样做:
Dim newrow As New DataGridViewRow
newrow.SetValues("Bla Bla Bla", value1, value2)
If Not value1.Equals(value2) Then
newrow.DefaultCellStyle.ForeColor = Color.Red
End If
DataGridView.Rows.Add(newrow)

整行都是空的。

为什么该行充满空单元格?

最佳答案

您的 newrow变量没有任何单元格,并且 SetValues忽略您的信息,因为没有任何可设置值的单元格。
来自 DataGridViewRow.SetValues Method :

If there are more values in the values list than there are cells to be initialized, this method ignores the extra values and returns false. This method also returns false if any of the specified values cannot be set.

If there are fewer values than there are cells, the remaining unmatched cells retain their current values.


使用 CreateCells填充单元格的方法:
newrow.CreateCells(DataGridView)
'' or
newrow.CreateCells(DataGridView, New Object() {"Bla Bla Bla", value1, value2})

关于vb.net - 手动添加 DataGridViewRow 导致空单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8761387/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com