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); } } }