mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-11 04:55:39 +02:00
24 lines
623 B
C#
24 lines
623 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
using Ninjacrab.PersistentWindows.Common;
|
|
|
|
namespace Ninjacrab.PersistentWindows.SystrayShell
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
PersistentWindowProcessor pwp = new PersistentWindowProcessor();
|
|
pwp.Start();
|
|
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
new SystrayForm();
|
|
Application.Run();
|
|
}
|
|
}
|
|
}
|