Here's my problem. I've made a simple stopwatch using WPF with start stop pause functions. Now what I want to do is that no matter how many times someone opens the .exe they will always see the same stopwatch. I've used Mutex to check if the app is already running and I was able to restrict opening a new instance off the app and instead switch to the first instance opened. What I want to achieve is not have only one window open but any windows that open after the first one to be running the same instance.
Please feel free to ask for more details. Thank you in advance.