mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
22 lines
414 B
C#
22 lines
414 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|