namespace Xylem.Common.Ui.GenesisToolBox { using System; using System.Windows.Forms; using Xylem.Common.Ui.GenesisToolBox.Infrastructure; internal static class Program { /// /// The main entry point for the application. /// [STAThread] internal static void Main() { // Initializes application state for the hole application as static properties and methods. Software.Initialize(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new FrmMainForm()); } } }