你们如何以正确的方式将表格 2(双精度)文本框中的数值实际传输到另一种表格(表格 1)中的标签,这就是我所做的:
//Form 2
private void btnok_Click(object sender, EventArgs e)
{
double exchange;
exchange = Double.Parse(txtcurrent.Text);
this.ownerForm.PassValue(txtcurrent.Text);
this.Close();
}
//Form 1
public void PassValue(string strValue)
{
lblexchange.Text = strValue;
}
private void update_Click(object sender, EventArgs e)
{
if (fromcountry.Text == tocountry.Text)
{
MessageBox.Show(" Please Choose Two Different Currencies ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
else
{
btnconvert.Enabled = true;
Exchange_Rate frm = new Exchange_Rate();
frm.Show();
}
最后我得到了 NullReferenceException 未处理。我不知道如何进一步编码。我需要帮助