PowerToys/src/settingsui/App.xaml.cs

16 lines
275 B
C#
Raw Normal View History

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();
}
}
}