mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-12 18:29:24 +08:00
37 lines
787 B
C#
37 lines
787 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace WinAlfred.Plugin.System
|
|
{
|
|
public class Main : IPlugin
|
|
{
|
|
List<Result> results = new List<Result>();
|
|
|
|
public List<Result> Query(Query query)
|
|
{
|
|
results.Clear();
|
|
|
|
if (query.ActionParameters.Count == 0)
|
|
{
|
|
results.Add(new Result
|
|
{
|
|
Title = "Shutdown",
|
|
SubTitle = "shutdown your computer",
|
|
Score = 100,
|
|
Action = () =>
|
|
{
|
|
|
|
}
|
|
});
|
|
}
|
|
return results;
|
|
}
|
|
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|
|
}
|