vote up 22 vote down star
24

Using C# and WPF under .net (rather than WindowsForms or console), what is the correct way to create an application that can only be run as a single instance? I know it has something to do with some mythical thing called a mutex, rarely can I find someone that bothers to stop and explain what one of these are.

The code needs to also inform the already running instance that the user tried to start a second one, and maybe also pass any command line arguments if any existed.

flag

58% accept rate
The selected answer does not handle abandoned mutexes .. – Sam Saffron Jul 13 at 5:33
@San Saffron - Do you have an answer that does? – Nidonocu Jul 13 at 23:32
Doesn't the CLR automatically release any unreleased mutexes when the application terminates anyway? – Cocowalla Oct 31 at 14:08

7 Answers

vote up 9 vote down check

Here is a very good article regarding the Mutex solution. The approach described by the article is advantageous for two reasons.

First, it does not require a dependency on the Microsoft.VisualBasic assembly. If my project already had a dependency on that assembly, I would probably advocate using the approach shown in the accepted answer. But as it is, I do not use the Microsoft.VisualBasic assembly, and I'd rather not have to deliver it.

Second, the article shows how to bring the existing instance of the application to the foreground when the user tries to start another instance. That's a very nice touch that the other Mutex solutions described here do not address.

link|flag
On the basis that this answer uses less code and less libraries and provides the raise to top functionality, I'm going to make this the new accepted answer. If anyone knows a more correct way to bring the form to the top using API's, feel free to add that. – Nidonocu Feb 9 at 2:11
vote up 21 vote down

You could use the Mutex class, but you will soon find out that you will need to implement the code to pass the arguments and such yourself. Well, I learned a trick when programming in WinForms when I read Chris Sell's book. This trick uses logic that is already available to us in the framework. I don't know about you, but when I learn about stuff I can reuse in the framework, that is usually the route I take instead of reinventing the wheel. Unless of course it doesn't do everything I want.

When I got into WPF, I came up with a way to use that same code, but in a WPF application. This solution should meet your needs based off your question.

First, we need to create our application class. In this class we are going override the OnStartup event and create a method called Activate, which will be used later.

public class SingleInstanceApplication : System.Windows.Application
{
    protected override void OnStartup(System.Windows.StartupEventArgs e)
    {
        // Call the OnStartup event on our base class
        base.OnStartup(e);

        // Create our MainWindow and show it
        MainWindow window = new MainWindow();
        window.Show();
    }

    public void Activate()
    {
        // Reactivate the main window
        MainWindow.Activate();
    }
}

Second, we will need to create a class that can manage our instances. Before we go through that, we are actually going to reuse some code that is in the Microsoft.VisualBasic assembly. Since, I am using C# in this example, I had to make a reference to the assembly. If you are using VB.NET, you don't have to do anything. The class we are going to use is WindowsFormsApplicationBase and inherit our instance manager off of it and then leverage properties and events to handle the single instancing.

public class SingleInstanceManager : Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase
{
    private SingleInstanceApplication _application;
    private System.Collections.ObjectModel.ReadOnlyCollection<string> _commandLine;

    public SingleInstanceManager()
    {
        IsSingleInstance = true;
    }

    protected override bool OnStartup(Microsoft.VisualBasic.ApplicationServices.StartupEventArgs eventArgs)
    {
        // First time _application is launched
        _commandLine = eventArgs.CommandLine;
        _application = new SingleInstanceApplication();
        _application.Run();
        return false;
    }

    protected override void OnStartupNextInstance(StartupNextInstanceEventArgs eventArgs)
    {
        // Subsequent launches
        base.OnStartupNextInstance(eventArgs);
        _commandLine = eventArgs.CommandLine;
        _application.Activate();
    }
}

Basically, we are using the VB bits to detect single instance's and process accordingly. OnStartup will be fired when the first instance loads. OnStartupNextInstance is fired when the application is re-run again. As you can see, I can get to what was passed on the command line through the event arguments. I set the value to an instance field. You could parse the command line here, or you could pass it to your application through the constructor and the call to the Activate method.

Third, it's time to create our EntryPoint. Instead of newing up the application like you would normally do, we are going to take advantage of our SingleInstanceManager.

public class EntryPoint
{
    [STAThread]
    public static void Main(string[] args)
    {
        SingleInstanceManager manager = new SingleInstanceManager();
        manager.Run(args);
    }
}

Well, I hope you are able to follow everything and be able use this implementation and make it your own.

link|flag
This is the way we do it and I've never been too happy about it because of the dependency on WinForms. – Bob King Sep 24 '08 at 16:42
I'd stick with the mutex solution because it has nothing to do with forms. – Steven Sudit Jul 13 at 5:26
vote up 13 vote down

From here.

A common use for a cross-process Mutex is to ensure that only instance of a program can run at a time. Here's how it's done:

class OneAtATimePlease {

  // Use a name unique to the application (eg include your company URL)

  static Mutex mutex = new Mutex (false, "oreilly.com OneAtATimeDemo");



  static void Main() {

    // Wait 5 seconds if contended – in case another instance

    // of the program is in the process of shutting down.



    if (!mutex.WaitOne (TimeSpan.FromSeconds (5), false)) {

      Console.WriteLine ("Another instance of the app is running. Bye!");

      return;

    }

    try {

      Console.WriteLine ("Running - press Enter to exit");

      Console.ReadLine();

    }

    finally { mutex.ReleaseMutex(); }

  }

}

A good feature of Mutex is that if the application terminates without ReleaseMutex first being called, the CLR will release the Mutex automatically.

link|flag
I've got to say, I like this answer a lot more than the accepted one simply due to the fact that it isn't dependent on WinForms. Personally most of my development has been moving to WPF and I don't want to have to pull in WinForm libraries for something like this. – slude Oct 27 '08 at 18:51
Of course, to be a full answer, you have to also describe passing the arguments to the other instance :) – Simon Buchan Nov 28 '08 at 5:32
vote up 1 vote down

You should never use a named mutex to implement a single instance application (or at least not for production code). Malicious code can easily DOS(Denial of Service) your ass...

link|flag
"You should never use a named mutex" - never say never. If malicious code is running on my machine, I'm probably already hosed. – Joe Jul 17 at 20:29
Actually it doesn't even have to be malicious code. It could just be a accidental name collision. – Matt Davison Jul 21 at 17:52
Then what should you do? – Kevin Berridge Oct 23 at 21:11
The better question is what possible reason would you want that behavior. Don't design your app as a single instance application=). I know that's a lame answer but from a design standpoint it is almost always the correct answer. Without knowing more about the app its hard to say much more. – Matt Davison Oct 24 at 11:32
vote up 0 vote down

Thanks Dale and to the rest of you, this sample should come in useful. :)

link|flag
vote up 0 vote down

Witty Twitter uses the solution from this Code Project article: Enforcing Single Instance of a Hidden-Window Application. It works well enough.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.