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

13 lines
295 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
{
this.InitializeComponent();
2020-04-03 14:45:02 -07:00
ShellBarShadow.Receivers.Add(ShadowReceiverGrid);
2020-03-27 15:04:34 -07:00
}
}
2020-04-03 14:45:02 -07:00
}