Files
PowerToys/src/modules/launcher/PowerLauncher.UI/LauncherControl.xaml.cs

12 lines
225 B
C#
Raw Normal View History

2020-03-27 15:04:34 -07:00
using Windows.UI.Xaml.Controls;
2020-03-27 15:32:37 -07:00
namespace PowerLauncher.UI
2020-03-27 15:04:34 -07:00
{
2020-03-27 15:32:37 -07:00
public sealed partial class LauncherControl : UserControl
2020-03-27 15:04:34 -07:00
{
2020-03-27 15:32:37 -07:00
public LauncherControl()
2020-03-27 15:04:34 -07:00
{
2020-04-08 16:53:16 -07:00
InitializeComponent();
2020-03-27 15:04:34 -07:00
}
}
2020-04-03 14:45:02 -07:00
}