using Ink_Canvas.Helpers; using System; using System.Linq; using System.Reflection; using System.Windows; namespace Ink_Canvas { /// /// Interaction logic for App.xaml /// public partial class App : Application { System.Threading.Mutex mutex; public static string[] StartArgs = null; public App() { this.Startup += new StartupEventHandler(App_Startup); } void App_Startup(object sender, StartupEventArgs e) { LogHelper.LogFile = AppDomain.CurrentDomain.SetupInformation.ApplicationBase + LogHelper.LogFileName; LogHelper.NewLog(string.Format("Ink Canvas Starting (Version: {0})", Assembly.GetExecutingAssembly().GetName().Version.ToString())); bool ret; mutex = new System.Threading.Mutex(true, "Ink_Canvas", out ret); if (!ret && !e.Args.Contains("-m")) //-m multiple { LogHelper.NewLog("Detected existing instance"); MessageBox.Show("已有一个程序实例正在运行"); LogHelper.NewLog("Ink Canvas automatically closed"); Environment.Exit(0); } StartArgs = e.Args; } } }