using Geschaeft.Properties; using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace Geschaeft { internal static class Program { public static bool istTouch = true; //TouchHelper.IsTouchDeviceReady(); public static Color Wirlblau = Color.FromArgb(1,53,101); /// /// Der Haupteinstiegspunkt für die Anwendung. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new FormGeschaeftMain()); } } }