我正在尝试从 Windows 窗体中的 dataGridView 中的单元格中获取数据,但不断收到此错误:'System.Windows.Forms.DataGridViewCell' 不包含'Text' 的定义...(您是否缺少 using 指令或装配参考?)。我在相关的 asp.net 网络表单应用程序中的 gridwiev 中使用了相同的方法,那么为什么它在这里不起作用?datagridview 中的数据来自数据库。
new Rectangle
{
Height = Convert.ToInt32(dataGridView1.Rows[i].Cells[2].Text),
Width = Convert.ToInt32(dataGridView1.Rows[i].Cells[3].Text),
X = 0,
Y = 0,
};