IDE: Microsoft Visual Studio 2010
Platform: C#.net
我有一个用户控件的表单。我想知道每当我点击用户控件的任何部分时,我的整个应用程序都挂起在C#.net中。并且该控件也有标签,当我点击标签时,它应该加载一个MDI父级和它指向的子表单。任何建议?
更新
label2.Location = new Point(922, 10);
label2.Visible = true;
lblQuickSetup.Visible = true;
rectangleShape2.Visible = true;
Background bg = new Background();
Form f = this.Parent as Form;
bg.MdiParent = f;
bg.Show();