miniSql

6136600 » zgc123@gmail.com
11/19/2023 创建
using System;
using MiniSqlQuery.Core;
using MiniSqlQuery.Core.Commands;

namespace $safeprojectname$.Commands
{
	public class SampleCommand : CommandBase
    {
		public SampleCommand() : base("&Descriptive Name")
		{
			SmallImage = ImageResource.plugin;
        }

        public override void Execute()
        {
			Form1 frm = new Form1();
			frm.ShowDialog(Services.HostWindow.Instance);
        }
    }
}