mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2026-01-03 15:24:11 +00:00
Added tray icon
This commit is contained in:
18
DnsServerTrayIcon/Program.cs
Normal file
18
DnsServerTrayIcon/Program.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace DnsServerTrayIcon
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.Run(new MainApplicationContext());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user