mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
25 lines
887 B
C#
25 lines
887 B
C#
using System.Diagnostics;
|
|
using System.Drawing;
|
|
|
|
namespace Wox.Plugin.ControlPanel
|
|
{
|
|
//from:https://raw.githubusercontent.com/CoenraadS/Windows-Control-Panel-Items
|
|
public class ControlPanelItem
|
|
{
|
|
public string LocalizedString { get; private set; }
|
|
public string InfoTip { get; private set; }
|
|
public string GUID { get; private set; }
|
|
public ProcessStartInfo ExecutablePath { get; private set; }
|
|
public Icon Icon { get; private set; }
|
|
public int Score { get; set; }
|
|
|
|
public ControlPanelItem(string newLocalizedString, string newInfoTip, string newGUID, ProcessStartInfo newExecutablePath, Icon newIcon)
|
|
{
|
|
LocalizedString = newLocalizedString;
|
|
InfoTip = newInfoTip;
|
|
ExecutablePath = newExecutablePath;
|
|
Icon = newIcon;
|
|
GUID = newGUID;
|
|
}
|
|
}
|
|
} |