1

我在我的 Windows 窗体应用程序“C#”和一个 datagridview 工具中有两个文本框,我想要(如果用户单击 datagridview 中的任何行),该行中的数据应该出现在两个文本框中如何做这件事。

谢谢你们。

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 回答