求助啊,,,C#窗体在自定义控件中弹出另一窗体,然后关掉自定义控件的窗体
如题,,,我做了一部分,但是在关掉操作的时候总是有问题,关掉的不仅仅是自定义的空间的窗体,还把刚刚弹出的窗体给关掉了。。不知道是怎么回事啊,求解啊,谢谢大家了这个是自定义控件的代码,在Form1的窗体里
public partial class UserControl2 : UserControl
{
public UserControl2()
{
InitializeComponent();
this.label1.BackColor = Color.Transparent;
this.pictureBox1.Controls.Add(this.label1);
this.label2.BackColor = Color.Transparent;
this.pictureBox1.Controls.Add(this.label2);
}
private void button1_Click(object sender, EventArgs e)
{
Form2 x=new Form2();
x.Show();
this.FindForm().Close();
}
}