我有一個datagridview和文本框在Windows窗體中,當我點擊datagridview的單元格時,該值必須複製到文本框。文本框中選定dataGridView單元格的值
我得到一個錯誤:
System.Windows.Forms.DataGridCell Does not contain a definition for RowIndex
我已經試過這個代碼
void dataGridView1_Click(object sender, EventArgs e)
{
Txt_GangApproved.Text=dataGridView1.CurrentCell.RowIndex.Cells["NO_OF_GANGS_RQRD"].Value.ToString();
}
你能幫助我,先生,請你能 http://stackoverflow.com/questions/14180601/passing-the-data-從文本框到選定單元格的datagridview#comment19653463_14180601 –