SweetLib/SweetLib.Demo/Program.cs
Serraniel 6821f80b73 Some config stuff
TaskBarProgress added (not working)
Demo added
2017-04-12 12:54:35 +02:00

23 lines
519 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SweetLib.Demo
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}