Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/15/20 15:58:21 (4 years ago)
Author:
dpiringe
Message:

#3026:

  • added a simple form control for JsonInterface to use it without CLI
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.App/Plugin.cs.frame

    r17442 r17599  
    2020#endregion
    2121
     22using System.Windows.Forms;
    2223using HeuristicLab.PluginInfrastructure;
    2324
     
    4041      if(args.Length == 4 && args[1] is OpenArgument && args[2] is OpenArgument && (args[3] is StringArgument || args[3] is OpenArgument)) {
    4142        Runner.Run(args[1].Value.ToString(), args[2].Value.ToString(), args[3].Value.ToString());
     43      } else {
     44        JsonInterfaceForm form = new JsonInterfaceForm();
     45        Application.Run(form);
    4246      }
    4347    }
Note: See TracChangeset for help on using the changeset viewer.