Files
PowerToys/Wox/CommandArgs/ToggleCommandArg.cs

18 lines
318 B
C#
Raw Normal View History

2015-10-30 23:17:34 +00:00
using System.Collections.Generic;
namespace Wox.CommandArgs
{
public class ToggleCommandArg:ICommandArg
{
public string Command
{
get { return "toggle"; }
}
public void Execute(IList<string> args)
{
App.Window.ToggleWox();
}
}
}