从数据网格视图在文本框中显示数据

本文关键字:数据 显示 文本 视图 数据网 网格 | 更新日期: 2023-09-27 18:31:38

我在我的Windows表单应用程序"C#"和一个datagridview工具中拖曳Textbox,我想要(如果用户单击数据网格视图中的任何行),此行中的数据应出现在拖曳文本框中我怎么能做这件事。

谢谢大家。

从数据网格视图在文本框中显示数据

说明

您可以订阅 DataGridView CellClick 事件。

样本

// 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;
}

更多信息

  • MSDN - DataGridView.CellClick Event