using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Wox.CommandArgs { public class HideStartCommandArg : ICommandArg { public string Command { get { return "hidestart"; } } public void Execute(IList args) { //App.Window.ShowApp(); //App.Window.HideApp(); } } }