PIbd-23-Mamadosimov-Z-Sh-Se.../Lab1/SelfPropelledArtilleryUnit/Program.cs
Ziyoviddin Mamadosimov 95b7b05dc7 Lab1
2023-10-13 10:51:06 +04:00

27 lines
698 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SelfPropelledArtilleryUnit
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
//Application.SetHighDpiMode(HighDpiMode.SystemAware);
//Application.EnableVisualStyles();
//Application.SetCompatibleTextRenderingDefault(false);
//Application.Run(new FormTank());
ApplicationConfiguration.Initialize();
Application.Run(new FormTank());
}
}
}