1

Windowsフォームアプリケーション「C#」と1つのdatagridviewツールに2つのテキストボックスがあり、(ユーザーがdatagridviewの任意の行をクリックした場合)、この行のデータが2つのテキストボックスに表示されるはずです。

皆さん、ありがとうございました。

4

1 に答える 1

0

説明

DataGridViewCellClickイベントをサブスクライブできます。

サンプル

// subscribe the event using code
yourDataGridView.CellClick += new DataGridViewCellEventHandler(YourGridView_CellClick);

// handle the event
private void YourGridView_CellClick(object sender,
    DataGridViewCellEventArgs e)
{
    DataGridViewImageCell cell = (DataGridViewImageCell)
        yourDataGridView.Rows[e.RowIndex].Cells[e.ColumnIndex];

   yourTextBox.Text = cell.Value;
}

詳しくは

于 2012-04-18T20:33:19.470 に答える