2020-03-27 15:04:34 -07:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Runtime.InteropServices.WindowsRuntime;
|
|
|
|
|
using Windows.Foundation;
|
|
|
|
|
using Windows.Foundation.Collections;
|
|
|
|
|
using Windows.UI.Xaml;
|
|
|
|
|
using Windows.UI.Xaml.Controls;
|
|
|
|
|
using Windows.UI.Xaml.Controls.Primitives;
|
|
|
|
|
using Windows.UI.Xaml.Data;
|
|
|
|
|
using Windows.UI.Xaml.Input;
|
|
|
|
|
using Windows.UI.Xaml.Media;
|
|
|
|
|
using Windows.UI.Xaml.Navigation;
|
|
|
|
|
|
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-03-27 15:20:42 -07:00
|
|
|
ShellBarShadow.Receivers.Add(ShadowReceiverGrid);
|
2020-03-27 15:04:34 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|