laatzen/Common/Ui/GenesisToolBox/Program.cs
Stoyan Zlatev dc4a3fa73a Register new AD user control
Change password control
2024-02-13 11:45:50 +01:00

24 lines
677 B
C#

namespace Xylem.Common.Ui.GenesisToolBox
{
using System;
using System.Windows.Forms;
using Xylem.Common.Ui.GenesisToolBox.Infrastructure;
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[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());
}
}
}