diff --git a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Controls/SolutionExplorer.cs b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Controls/SolutionExplorer.cs index 71af3b82..395dc5bb 100644 --- a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Controls/SolutionExplorer.cs +++ b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Controls/SolutionExplorer.cs @@ -296,12 +296,15 @@ namespace UniversalEditor.UserInterface.WindowsForms.Controls } } + private void task_Progress(object sender, ProgressEventArgs e) + { + } + private void tsmiProjectTask_Click(object sender, EventArgs e) { ToolStripMenuItem tsmi = (sender as ToolStripMenuItem); ProjectTask task = (tsmi.Tag as ProjectTask); - - MessageBox.Show("Task activated: " + task.Title + " (" + task.Actions.Count.ToString() + " actions)"); + task.Execute(new ProgressEventHandler(task_Progress)); } private void tsmiItemShortcut_Click(object sender, EventArgs e) {