mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
18 lines
318 B
C#
18 lines
318 B
C#
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();
|
|
}
|
|
}
|
|
}
|