mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 04:07:40 +02:00
Refactoring command args and change the signal instance implement.
This commit is contained in:
21
Wox/CommandArgs/HideStartCommandArg.cs
Normal file
21
Wox/CommandArgs/HideStartCommandArg.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user