Add Feature Tab in Settings. (Still WIP)

This commit is contained in:
Yeechan Lu
2014-03-28 22:42:28 +08:00
parent 70950b8267
commit 4512854c2a
16 changed files with 265 additions and 43 deletions

View File

@@ -21,7 +21,7 @@ namespace Wox.Plugin.System
InitInternal(context);
}
public string Name
public virtual string Name
{
get
{
@@ -29,12 +29,22 @@ namespace Wox.Plugin.System
}
}
public string Description
public virtual string Description
{
get
{
return "System workflow";
}
}
public virtual string IcoPath
{
get
{
return null;
}
}
public string PluginDirectory { get; set; }
}
}