将一个表单的整数更改为另一个表单

时间:2013-11-11 20:07:50

标签: c# forms datagridview

我正在制作一个程序,我有一个DataGridView。 此GridView通过SQL连接通过1个表获取其数据。 该表有1列和一些行。

对于每一行,都有另一列带按钮。 当我单击按钮时,我希望它打开另一个表单,它只显示我现在单击的行中的文件名。

不幸的是,该程序打开表单,但显示表中的第一个单元格。 这是因为Form2永远不会被告知它应该从Form1获取的e.RowIndex编号,因此它知道要显示哪一行。所以现在假设无论我点击哪个按钮,我都想要e.RowIndex数字0,它指的是1号单元格。

所以,关于这个问题; 如何让它更新我的chartRowNumber才假定它只是0?

表单1:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Data.Sql;
using System.Threading;

namespace WindowsFormsApplication5
{
    public partial class Form1 : Form
    {![enter image description here][1]
    DataTable userTable = new DataTable();
    DataGridViewButtonColumn checkMeasurement = new DataGridViewButtonColumn();
    public DataSet ds = new DataSet();
    private SqlConnection con = new SqlConnection(@"Data Source=irrelevant");
    public Form1()
    {
        InitializeComponent();
        con.Open();
        SqlCommand cmd = new SqlCommand("SELECT BlobFilename FROM tblUsers", con);
        SqlDataAdapter da = new SqlDataAdapter(cmd);
        da.Fill(ds);
        checkMeasurement.HeaderText = "Se Måling";
        checkMeasurement.Text = "";
        checkMeasurement.UseColumnTextForButtonValue = true;
        dataGridView1.DataSource = ds.Tables[0];
        dataGridView1.Columns.Add(checkMeasurement);
    }

    public void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
    {
        if (e.ColumnIndex == 0)
        {
            Form2 f = new Form2();
            f.chartRowNumber = e.RowIndex;
            Thread.Sleep(1000);
            f.Show();
        }
    }
}

}

表格2

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication5
{
    public partial class Form2 : Form
    {
        public int chartRowNumber;
        public Form2()
        {
            InitializeComponent();
            Form1 f = new Form1();
            DataTable PatientTable = f.ds.Tables[0];
            listBox1.Items.Add(PatientTable.Rows[chartRowNumber].ItemArray[0].ToString());
        }
    }
}

如果您有兴趣,这是GUI的图片。 http://i.stack.imgur.com/PDyFt.png

2 个答案:

答案 0 :(得分:1)

为Form2创建一个重载的构造函数,它接受行号

public int chartRowNumber = 0;
    public Form2()
    {
        InitializeComponent();
        Form1 f = new Form1();
        DataTable PatientTable = f.ds.Tables[0];
        listBox1.Items.Add(PatientTable.Rows[chartRowNumber].ItemArray[0].ToString());
    }

public Form2(int rowIndex)
    {
        InitializeComponent();
        Form1 f = new Form1();
        DataTable PatientTable = f.ds.Tables[rowIndex];
        listBox1.Items.Add(PatientTable.Rows[chartRowNumber].ItemArray[0].ToString());
    }

您必须检查此索引,因为我不确定您要在哪里使用rowIndex变量,但您可以使用此方法将其转到Form2实例

答案 1 :(得分:0)

您的代码无法正常工作有两个原因。第一个是因为Form2的构造函数在传递rowIndex之前运行,第二个原因是因为您构建另一个Form1实例来提取数据表。第二个实例有自己的gridview,Form1的构造函数重新查询数据库并填充第二个form1实例的gridview。在这个例子中,事件dataGridView1_CellContentClick永远不会触发,你没有任何rowIndex与零不同

在CellContentClick事件中,您需要将构造函数中所需的rowIndex和表传递给Form2构造函数

public void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
    if (e.ColumnIndex == 0)
    {
        Form2 f = new Form2(e.RowIndex, ds.Tables[0]);
        f.Show();
    }
}

并在Form2构造函数中使用从Form1的当前实例传递的两个变量,而不构建另一个实例

public partial class Form2 : Form
{
    public Form2(int chartRowNumber, DataTable form1Table)
    {
        InitializeComponent();
        listBox1.Items.Add(form1Table.Rows[chartRowNumber].ItemArray[0].ToString());
    }
}

当然,如果你需要将这些变量保存到其他操作中,你应该将它们保存在Form2当前实例中的全局变量中

相反,如果在form2中,你既不需要rowNumber也不需要数据表,那么你可以直接从Form1的当前实例传递item数组的元素零

public void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
    if (e.ColumnIndex == 0)
    {
        Form2 f = new Form2(ds.Tables[0].Rows[e.RowIndex][0].ToString());
        f.Show();
    }
}

public partial class Form2 : Form
{
    public Form2(string item)
    {
        InitializeComponent();
        listBox1.Items.Add(item);
    }
}