我想将datagrid视图的当前行的特定列值获取到另一个表单的文本框中。我该怎么做。我正在使用c sharp

时间:2010-03-17 01:59:23

标签: c# datagridview

我想传递datagridview当前行的列值。我在datagridview中的一列上有一个按钮。当我点击按钮时,会打开另一个表单。我在另一个表单上有一个文本框。所以我想在另一个表单的文本框中获取当前行的列值。我正在使用c sharp。

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

以下是使用构造函数接收值的示例:

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();

    }

    private void Form1_Load(object sender, EventArgs e)
    {
        //test data
        this.dataGridView1.Rows.Add(1);
        this.dataGridView1[1, 0].Value = "testValue1";
        this.dataGridView1[1, 1].Value = "testValue2";
    }

    private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
    {
        //Button is in column 0.
        if ((e.ColumnIndex != 0) || (e.RowIndex < 0)) { return; }


        string valueToPass = (dataGridView1[1, e.RowIndex].Value as string) ?? String.Empty;
        Form2 f2 = new Form2(valueToPass);
        f2.Show();
    }

}


public partial class Form2 : Form
{
    public Form2(string valueFromOtherForm)
    {
        InitializeComponent();
        this.textBox1.Text = valueFromOtherForm;
    }

}