juncaixingchilove 2016-03-04 08:53 采纳率: 0%
浏览 1505

winform两页面传值时出现 未将对象引用设置到对象的实例

Form1
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 adventure
{
public partial class Form1 : Form
{
string str1;
string str2;
public Form1()
{
InitializeComponent();
}

    private void button1_Click(object sender, EventArgs e)
    {
        //string str1 = Process.GetCurrentProcess().MainModule.FileName;
        OpenFileDialog open = new OpenFileDialog();
        if (open.ShowDialog() == DialogResult.OK)
        {
            textBox1.Text =open.FileName;
        }
    }

    private void button2_Click(object sender, EventArgs e)
    {
        str1 = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;//得到路径
        textBox1.Text = str1;//显示得到的路径

    }

    private void button3_Click(object sender, EventArgs e)
    {
        str2 = textBox2.Text;
        Form2 f = new Form2(str1,str2); //将值传到Form2
        f.Show();
        //Form2 Form1 = new Form2();
        //在新弹出的窗口中显示得到的路径和内存
        //MessageBox.Show("您选择的文件路径是:\n" + textBox1.Text + "\n内存是:" + textBox2.Text);
        //Form1.Show();
    }
}

}

Form2
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 adventure
{
public partial class Form2 : Form
{
string b;
string d;
public Form2(string a,string c)//a等同于Form1textbox值
{
this.b = a; //将Form1的textbox值传给b
this.d = c;
label1.Text = a;
label2.Text = c;
}

    public Form2()
    {
        // TODO: Complete member initialization
    }





}

}
图片说明

  • 写回答

1条回答 默认 最新

  • threenewbee 2016-03-04 08:56
    关注
    评论

报告相同问题?

悬赏问题

  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 划分vlan后不通了
  • ¥15 GDI处理通道视频时总是带有白色锯齿
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大