WPF organization-mutex ensures application Singleton runs

Source: Internet
Author: User

Sometimes we do not want our WPF Application to run multiple instances at the same time. When we try to run the second instance, the running instance should also pop up.

We can use mutex to implement

Open app. XAML. CS and add the following content to the app class:

    public partial class App : Application    {        [DllImport("user32", CharSet = CharSet.Unicode)]        static extern IntPtr FindWindow(string cls, string win);        [DllImport("user32")]        static extern IntPtr SetForegroundWindow(IntPtr hWnd);        [DllImport("user32")]        static extern bool IsIconic(IntPtr hWnd);        [DllImport("user32")]        static extern bool OpenIcon(IntPtr hWnd);        protected override void OnStartup(StartupEventArgs e)        {            bool isNew;            var mutex = new Mutex(true, "My Singleton Instance", out isNew);            if (!isNew)            {                ActivateOtherWindow();                Shutdown();            }        }        private static void ActivateOtherWindow()        {            var other = FindWindow(null, "MainWindow");            if (other != IntPtr.Zero)            {                SetForegroundWindow(other);                if (IsIconic(other))                    OpenIcon(other);            }        }    }

 

The WPF implementation is slightly different from the winform implementation. See the previous blog post in debuglzq: using the kernel object mutex can prevent the same process from running twice.

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.