Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/Templates/HeuristicLab.VS2010Wizards.Test/Program.cs @ 7271

Last change on this file since 7271 was 5704, checked in by abeham, 13 years ago

#567

  • Added item template
  • Adapted problem template
  • Enabled tab key to continue editing the next column in the grid
File size: 419 bytes
RevLine 
[4181]1using System;
2using System.Windows.Forms;
3
4namespace HeuristicLab.VS2010Wizards.Test {
5  static class Program {
6    /// <summary>
7    /// The main entry point for the application.
8    /// </summary>
9    [STAThread]
10    static void Main() {
11      Application.EnableVisualStyles();
12      Application.SetCompatibleTextRenderingDefault(false);
[5704]13      Application.Run(new ProblemWizardForm());
[4181]14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.