24 lines
609 B
C#
Raw Normal View History

2022-09-20 10:04:55 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace PIbd_21_Potapov_N.S._Catamaran_Base
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
2022-09-20 10:35:41 +04:00
Application.SetHighDpiMode(HighDpiMode.SystemAware);
2022-09-20 10:04:55 +04:00
Application.SetCompatibleTextRenderingDefault(false);
2022-10-12 12:40:12 +04:00
Application.Run(new FormCatamaran());
2022-09-20 10:04:55 +04:00
}
}
}