pascalabcnet/WeifenLuo/DockSample/Program.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

20 lines
461 B
C#

using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace DockSample
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}