16 lines
298 B
C#
16 lines
298 B
C#
|
|
using System;
|
||
|
|
using System.Windows.Forms;
|
||
|
|
|
||
|
|
namespace LP;
|
||
|
|
|
||
|
|
internal static class Program
|
||
|
|
{
|
||
|
|
[STAThread]
|
||
|
|
private static void Main()
|
||
|
|
{
|
||
|
|
Application.EnableVisualStyles();
|
||
|
|
Application.SetCompatibleTextRenderingDefault(defaultValue: false);
|
||
|
|
Application.Run(new FormDesktop());
|
||
|
|
}
|
||
|
|
}
|