欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

c# 实现两个窗体来回跳转

程序员文章站 2022-06-10 10:56:26
...
            while (sg.DialogResult != DialogResult.Cancel)
            {
                if (sg.DialogResult == DialogResult.OK)
                {
                    sg.Hide();
                    
                }

                frm_login register = new frm_login();
                register.ShowDialog();
                sg.ShowDialog();
            }

其实就是个while循环