Windows フォームで dataGridView からセルからデータを取得しようとしていますが、このエラーが発生し続けます: 'System.Windows.Forms.DataGridViewCell' には 'Text' の定義が含まれていません... (using ディレクティブまたはアセンブリ参照?) 関連するasp.net Webフォームアプリケーションの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,
};