28 lines
669 B
C#
28 lines
669 B
C#
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);
|
|
|
|
/// <summary>
|
|
/// Der Haupteinstiegspunkt für die Anwendung.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new FormGeschaeftMain());
|
|
}
|
|
}
|
|
}
|