miniSql

创建
zgc123@gmail.com authored at 11/19/2023 1:40:15 AM
425.00 B
ShowExportWindowCommand.cs
using MiniSqlQuery.Core.Commands;

namespace MiniSqlQuery.Exports.Plugin.Commands
{
    public class ShowExportWindowCommand : CommandBase
    {
        public ShowExportWindowCommand()
            : base("&Export data...")
        {
        }

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