mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
21 lines
370 B
C#
21 lines
370 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Wox.CommandArgs
|
|||
|
{
|
|||
|
public class ToggleCommandArg:ICommandArg
|
|||
|
{
|
|||
|
public string Command
|
|||
|
{
|
|||
|
get { return "toggle"; }
|
|||
|
}
|
|||
|
|
|||
|
public void Execute(IList<string> args)
|
|||
|
{
|
|||
|
App.Window.ToggleWox();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|