3

ご挨拶!
私のプロジェクトでは、datagridviewcell をクリックすると、フォームのテキスト ボックスに値がポップアップする必要があります。実際には、機能していることもあれば機能していないこともあります。同様に、3回目のクリックでは機能しません。私が使用しているコードは次のとおりです。

private void dataGridView2_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
    int i = dataGridView2.SelectedCells[0].RowIndex;

    txtPrjNmae.Text = dataGridView2.Rows[i].Cells[0].Value.ToString();
    txtPrjdescription.Text = dataGridView2.Rows[i].Cells[1].Value.ToString();
    txtPrjDate.Text = dataGridView2.Rows[i].Cells[2].Value.ToString();
    txtPrjSize.Text = dataGridView2.Rows[i].Cells[3].Value.ToString();
    txtPrjManager.Text = dataGridView2.Rows[i].Cells[4].Value.ToString();           
}
4

1 に答える 1