Windowsフォームアプリケーション「C#」と1つのdatagridviewツールに2つのテキストボックスがあり、(ユーザーがdatagridviewの任意の行をクリックした場合)、この行のデータが2つのテキストボックスに表示されるはずです。
皆さん、ありがとうございました。
Windowsフォームアプリケーション「C#」と1つのdatagridviewツールに2つのテキストボックスがあり、(ユーザーがdatagridviewの任意の行をクリックした場合)、この行のデータが2つのテキストボックスに表示されるはずです。
皆さん、ありがとうございました。
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;
}