diff --git a/minisqlquery-master/src/Contrib/MiniSqlQuery.Exports.Plugin/Commands/ShowExportWindowCommand.cs b/minisqlquery-master/src/Contrib/MiniSqlQuery.Exports.Plugin/Commands/ShowExportWindowCommand.cs
new file mode 100644
index 0000000..90df497
--- /dev/null
+++ b/minisqlquery-master/src/Contrib/MiniSqlQuery.Exports.Plugin/Commands/ShowExportWindowCommand.cs
@@ -0,0 +1,18 @@
+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);
+ }
+ }
+}
\ No newline at end of file