C# wpf使用activate无法使窗体前端显示,要注意
一定要先activate 再给Windowstate赋值
即使用如下形式
this.Show();this.Activate();this.WindowState = WindowState.Normal;