标题:求助啊,,,C#窗体在自定义控件中弹出另一窗体,然后关掉自定义控件的窗体
取消只看楼主
a819525367
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2011-7-10
结帖率:66.67%
已结贴  问题点数:20 回复次数:1 
求助啊,,,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();
        }  
    }
搜索更多相关主题的帖子: public 空间 
2011-07-10 15:51
a819525367
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2011-7-10
得分:0 
回复 2楼 玄懿
恩,好的,我试一试
2011-07-10 21:33



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-345145-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.043554 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved