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