我有一个 datagridview,它有 3 列,第 1 和第 2 列是文本框列,第 3 列是链接列。我尝试使用该命令添加新行。
STEPS.Rows.Add(New String() {stepNo, "This is description for step " & stepNo},"link")
但是当我第一次尝试执行上面的行时,它显示index was outside the bounds of the array
. 当我尝试插入第二行时,这不会发生。当我将所有 3 列都作为文本框时,这也不会发生。
请帮我。