在主窗体上点击菜单时,如果做到每个窗体不会被重复打开,如果打开了,可以将其重新获得焦点. 首先在主窗体中将菜单关联的窗体实例化. 第二步:将每个菜单对应窗体的closing事件重写.之所以要重写closing事件,是因为在菜单对应的窗口关闭之后,再次打开就会报错 第三步:在主窗体中菜单事件里面进行判断处理 栗子如下: public partial class main : Window { //实例化关联的窗口 MainWindow m = new MainWi
内容来自:https://codereview.stackexchange.com/questions/20871/single-instance-wpf-application 第一步:添加System.RunTime.Remoting引用 第二步:新建一个类class1.cs(按自己想法命名) using System; using System.Collections; using System.Collections.Generic; using System.ComponentMode