miniSql

vs2019汉化99%
zgc123@gmail.com authored at 11/28/2023 4:10:34 PM zgc123@gmail.com committed at 11/28/2023 4:10:51 PM
427.00 B
ShowExportWindowCommand.cs
using MiniSqlQuery.Core.Commands;

namespace MiniSqlQuery.Exports.Plugin.Commands
{
    public class ShowExportWindowCommand : CommandBase
    {
        public ShowExportWindowCommand()
            : base("&E导出数据...")
        {
        }

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