WPF外包公司—技术分享WPF只运行一个实例

一笑奈何 提交于 2020-03-31 04:56:48

首先 引用Microsoft.VisualBasic
然后新建一个类 single
   public  class single:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase
    {
       App a;
       public single()
       {
           this.IsSingleInstance = true;
       }
       protected override bool OnStartup(Microsoft.VisualBasic.ApplicationServices.StartupEventArgs eventArgs)
       {
           a = new App();
           a.InitializeComponent();
           a.Run();
           return false;
       }
       protected override void OnStartupNextInstance(Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs eventArgs)
       {
           base.OnStartupNextInstance(eventArgs);
           a.activate();
       }
    }

app.cs
    public partial class App : Application
    {
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);
            Window1 w = new Window1();
            w.Show();
        }
        public void activate()
        {
            MainWindow.Activate();
        }
        private void Application_SessionEnding(object sender, SessionEndingCancelEventArgs e)
        {
       
        }
        private void Application_Startup(object sender, StartupEventArgs e)
        {
         
        }
        private void Application_Exit(object sender, ExitEventArgs e)
        {
   
        }
    }
app.g.cs
        [System.STAThreadAttribute()]
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        public static void Main(string [] a ) {
            single s = new single();
            s.Run(a);  
        }
 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!