码迷,mamicode.com
首页 > 其他好文 > 详细

关闭当前窗口,打开另一窗口

时间:2014-09-25 04:11:08      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   for   div   sp   

namespace CloseOpen
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            System.Threading.Thread thread = new System.Threading.Thread(new System.Threading.ThreadStart(NewForm));
            thread.Start();
            while (thread.ThreadState != System.Threading.ThreadState.Running) ;
            this.Close();
        }

        private void NewForm()
        {
            Application.Run(new Form2());
        }

    }
}

 

 

关闭当前窗口,打开另一窗口

标签:style   blog   color   io   os   ar   for   div   sp   

原文地址:http://www.cnblogs.com/guanguangreat/p/3991866.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!