Initialize Windows desktop skeleton

This commit is contained in:
Misaka
2026-05-15 20:12:07 +08:00
commit 498251ad79
12 changed files with 334 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
namespace WirelessTextSyncer.Windows;
using WirelessTextSyncer.Windows.Tray;
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new TrayApplicationContext());
}
}