mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
21 lines
426 B
C#
21 lines
426 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace settings_v2
|
|||
|
|
{
|
|||
|
|
public class Program
|
|||
|
|
{
|
|||
|
|
[System.STAThreadAttribute()]
|
|||
|
|
public static void Main()
|
|||
|
|
{
|
|||
|
|
using (new settingsui.App())
|
|||
|
|
{
|
|||
|
|
settings_v2.App app = new settings_v2.App();
|
|||
|
|
app.InitializeComponent();
|
|||
|
|
app.Run();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|