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 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题