PowerToys/Wox.Plugin.System/Setting.cs
2014-01-29 18:33:24 +08:00

34 lines
884 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Plugin.System
{
public class Setting : BaseSystemPlugin
{
private PluginInitContext context;
protected override List<Result> QueryInternal(Query query)
{
List<Result> results = new List<Result>();
if ("setting".Contains(query.RawQuery.ToLower()))
{
results.Add(new Result()
{
Title = "Wox Setting Dialog",
Score = 100,
IcoPath = "Images/app.png",
Action = () => context.OpenSettingDialog()
});
}
return results;
}
protected override void InitInternal(PluginInitContext context)
{
this.context = context;
}
}
}