我在我的 Windows 窗体应用程序“C#”和一个 datagridview 工具中有两个文本框,我想要(如果用户单击 datagridview 中的任何行),该行中的数据应该出现在两个文本框中如何做这件事。
谢谢你们。
我在我的 Windows 窗体应用程序“C#”和一个 datagridview 工具中有两个文本框,我想要(如果用户单击 datagridview 中的任何行),该行中的数据应该出现在两个文本框中如何做这件事。
谢谢你们。
您可以订阅 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;
}