1

我必须id在 C# 中从一种形式传递到另一种形式。

我无法做到这一点。

C#代码是:

private void btnedit_Click(object sender, EventArgs e)
{
    foreach (DataGridViewRow a in dataGridViewUnPaidList.Rows) 
    {
        if (a.Cells[0].Value != null)
        {
            Convert.ToInt64(a.Cells[1].Value); // i have to pass this id in AddInvoice() form
            AddInvoice ad = new AddInvoice();
            ad.Show();
            NonPaideData non = new NonPaideData();
            non.Hide();
        }
        else
        {
        MessageBox.Show("Now Row Is Selected");
        }
    }
}

谁能告诉我我做错了什么?

4

2 回答 2

5

在 中创建一个属性AddInvoice

public long CellValue { get; set }

分配给它:

private void btnedit_Click(object sender, EventArgs e)
{
    foreach (DataGridViewRow a in dataGridViewUnPaidList.Rows)
    {
        if (a.Cells[0].Value != null)
        {
            AddInvoice ad = new AddInvoice();
            ad.CellValue = Convert.ToInt64(a.Cells[1].Value);
            ad.Show();

            NonPaideData non = new NonPaideData();
            non.Hide();
        }
        else
        {
            MessageBox.Show("Now Row Is Selected");
        }
    }

并且只是在AddInvoiceas中使用它CellValue

哦,如果这实际上是代码,我认为您的意思可能this.Hide();不是创建一个新的NonPaideData并隐藏它。

于 2012-08-04T18:53:07.823 回答
4

在 Form1 中

private void ShowForm2()
{
    string value = TheTextBox.Text;
    Form2 newForm = new Form2();
    newForm.TheValue = value;
    newForm.ShowDialog();
}

在 Form2 中

private string _theValue;
public string TheValue 
{ 
    get
    {
        return _theValue;
    }
    set
    {
        _theValue = value; 
        // do something with _theValue so that it
        // appears in the UI

    }
}

请参阅此代码,我认为这将对您有所帮助。

于 2012-08-04T19:39:08.847 回答