protected override void OnStartupNextInstance(StartupNextInstanceEventArgs e)
        {
            if (e.CommandLine.Count > 0)
            {
                app.ProcessCommandLine(e.CommandLine.ToArray());
            }

            app.Activate();
        }
Exemplo n.º 2
0
 public void Activate()
 {
     app.Activate();
 }