예제 #1
0
 /// <summary>
 /// Handles the event that occurs when the user runs the active design.
 /// </summary>
 public void Run()
 {
     try
     {
         var output = DesignController.Parse();
         if (output == null)
         {
             return;
         }
         DisplayController.DisplayOutput(output);
     }
     catch (Exception)
     {
         DialogBox.New("Error", UnfoundErrorMessage, DialogType.Ok);
     }
 }