我已经阅读了很多关于在mainform / Form1中通过按钮点击事件打开预先存在的表单的帖子,但我不知道它为什么不能为我工作。
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 DesignP1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Button3_click(object sender, EventArgs e)
{
Form2 form2 = new Form2();
form2.Show();
}
}
}
除了没有按钮事件外,表格2与表格1相同。