public SingleInstanceWindow()
        {
            WpfSingleInstance.Make("MyWpfApplication");

            InitializeComponent();

            MyLocationFullPath.Text = System.Reflection.Assembly.GetEntryAssembly().Location;
        }
Ejemplo n.º 2
0
        protected override void OnStartup(StartupEventArgs e)
        {
            WpfSingleInstance.Make("MyWpfApplication", this);

            base.OnStartup(e);
        }