Refactoring command args and change the signal instance implement.

This commit is contained in:
qianlifeng
2014-10-21 18:16:05 +08:00
parent 1cf79d8fbc
commit be33ac3c4f
14 changed files with 712 additions and 149 deletions

View File

@@ -0,0 +1,21 @@
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<string> args)
{
//App.Window.ShowApp();
//App.Window.HideApp();
}
}
}