agrobot_base/AgroBase/AgroMonitor/Program.cs

23 lines
530 B
C#
Raw Normal View History

2024-05-24 20:05:51 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AgroMonitor
{
internal static class Program
{
/// <summary>
/// Ponto de entrada principal para o aplicativo.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmInicial());
}
}
}