Add plug-in support

This commit is contained in:
2019-05-29 09:48:49 +02:00
parent 1f1cbfd1e5
commit 8847f3f9b7
7 changed files with 221 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
using System.Windows.Forms;
using VAR.Toolbox.UI;
namespace VAR.Toolbox.TestPlugin
{
public partial class FrmTestPlugin : Form, IToolForm
{
public FrmTestPlugin()
{
InitializeComponent();
}
public string ToolName { get { return "Test"; } }
public bool HasIcon { get { return false; } }
}
}