多个表单不显示

本文关键字:显示 表单 | 更新日期: 2023-09-27 17:54:23

我想做一个multiWindowsForm

只是为了尝试它是如何工作的,我从一个简单的表单开始,我添加了一个按钮。当点击它时,会弹出另一个窗口。但我不能让它工作。它崩溃了,错误:

Object reference not set to an instance of an object!

我使用Project & rrr;Windows窗体命名为Mupp.cs

这是我的Form1.cs代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace MultiForm
{
    public partial class tryout : Form
    {
        public tryout()
        {
            InitializeComponent();
        }
        Mupp theMupp;
        private void Form1_Load(object sender, EventArgs e)
        {
            theMupp = new Mupp();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            theMupp.Show();
        }
    }
}

我错过了什么?

多个表单不显示

看起来load事件没有触发,因此没有初始化您的对象。请确保加载事件已连接。

或者,在click事件中初始化。

 private void button1_Click(object sender, EventArgs e)
 {
     using (Mupp theMupp = new Mupp())
     {
         theMupp.ShowDialog();
     }
 }

public tryout()
{
      InitializeComponent();
      this.Load += new EventHandler(Form1_Load);
}