IPCamAppBar/IPCamAppBar/Program.cs

23 lines
515 B
C#
Raw Normal View History

2019-08-22 16:25:12 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace IPCamAppBar
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2019-08-23 09:13:10 +00:00
Application.Run(new MainForm());
2019-08-22 16:25:12 +00:00
}
}
}