我正在 Visual Studio 2010 c# 中开发一个应用程序。
如图所示,我有两种形式:
在 Form2 中,我有一个DataGridView
带有用户名的控件,在 Form1 中,我有一个 TextBox 和一个 Button。我通过以下方式打开 Form2:
Form2 frm = new Form2();
frm.ShowDialog();
如何在 Form1 TextBox 中获取 GDataGridView 的选定列值?
我正在 Visual Studio 2010 c# 中开发一个应用程序。
如图所示,我有两种形式:
在 Form2 中,我有一个DataGridView
带有用户名的控件,在 Form1 中,我有一个 TextBox 和一个 Button。我通过以下方式打开 Form2:
Form2 frm = new Form2();
frm.ShowDialog();
如何在 Form1 TextBox 中获取 GDataGridView 的选定列值?
您可以使用事件来解决问题。只需像这样在您的 form2 中创建一个事件
public event Action<string> DatagridCellSelected;
在您的 form1 中连接一个带有此事件的方法。
DatagridCellSelected+=form2_DatagridCellSelected;
在这种方法中做这样的事情
textbox1.Text = obj;
现在在您的 form2 处理 DataGridView 单元格中输入事件
private void dataGridView1_CellEnter(object sender, DataGridViewCellEventArgs e)
{
var value = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
DatagridCellSelected(value ?? "");
}
这是一个干净的代码,可以解决您的情况
假设您有两个表格Form1和Form2
Form 1
有文本框和按钮。显示按钮 Form2
单击
Form1.cs
private void button1_Click(object sender, EventArgs e)
{
Form2 f = new Form2();
f.DataGridCell += new Action<string>(f_DatagridCell);
f.ShowDialog();
}
void f_DatagridCell(string obj)
{
textBox1.Text = obj;
}
在你的Form2.cs
public event Action<string> DataGridCell ;
private void dataGridView1_CellEnter(object sender, DataGridViewCellEventArgs e)
{
try
{
if (DatagridCell!=null)
{
var value = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
DatagridCell(value);
}
}
catch { }
}
你完成了:)
试试这个:获取选定的网格值
if (dataGridView1.SelectedRows.Count != 0)
{
string selectedval;
DataGridViewRow row = this.dataGridView1.SelectedRows[0];
selectedval= row.Cells["ColumnName"].Value
}
定义表单的属性,然后在表单实例可用的其他地方使用它
public string SetText
{
get { return textBox1.Text; }
set { textBox1.Text = value; }
}
有我的变种。将此属性添加到带有数据网格的 Form 类中:
public DataGridViewCell SelectedCell
{
get
{
return dataGridView1.SelectedCells.Count > 0 ? dataGridView1.SelectedCells[0] : null;
}
}
public string SelectedValue
{
get
{
var val = SelectedCell != null ? SelectedCell.Value : null;
return val != null ? val.ToString() : null;
}
set
{
SelectedCell.Value = value;
}
}
用法:
form.SelectedValue = "123";
仅当仅选择一个单元格时,这才能正常工作。
根据您的所有建议找到正确答案。
谢谢您的帮助。
这是我为所有有需要的人提供的工作代码。
在 Form1 中
private void BtnSelect_Click(object sender, EventArgs e)
{
frm.ShowDialog();
textBox1.Text= frm._textBox1.ToString();
}
public string _textBox
{
set { textBox1.Text = value; }
}
在 Form2 中
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
string val = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
textBox1.Text = val;
this.Close();
}
public string _textBox1
{
get { return textBox1.Text.Trim(); }
}
干杯..!!!!!!!!!