mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +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();
|
|
}
|
|
}
|
|
}
|