mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 04:07:40 +02:00
16 lines
275 B
C#
16 lines
275 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.IO;
|
|||
|
|
using Microsoft.Toolkit.Win32.UI.XamlHost;
|
|||
|
|
|
|||
|
|
namespace settingsui
|
|||
|
|
{
|
|||
|
|
public sealed partial class App : XamlApplication
|
|||
|
|
{
|
|||
|
|
public App()
|
|||
|
|
{
|
|||
|
|
this.Initialize();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|