美文网首页
【WPF】子窗体只能运行一个,限制点击事件重复运行

【WPF】子窗体只能运行一个,限制点击事件重复运行

作者: UnicornChen | 来源:发表于2019-05-30 16:36 被阅读0次

private static Window1 newForm;//全局实例化窗口

private void Button_Click(object sender, RoutedEventArgs e)

        {

            //Window1 window1 = new Window1();

            //window1.Show();

            if (newForm == null || newForm.IsVisible==false)

            {

                newForm = new Window1();

                newForm.Show();

            }

            else

            {

                newForm.WindowState = WindowState.Normal;

                newForm.Activate();

            }

        }

相关文章

网友评论

      本文标题:【WPF】子窗体只能运行一个,限制点击事件重复运行

      本文链接:https://www.haomeiwen.com/subject/wfvvtctx.html