mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-23 08:27:58 +08: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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|