PowerToys/src/modules/launcher/PowerLauncher.UI/LauncherControl.xaml.cs
Divyansh Srivastava a1e1d663c3
Migrate Search box to WPF control (#2917)
* Replaced UWP searchbox with WPF

* Updated foreground color scheme for textbox

* Add focus on visibility changed

* Updated initial hiding of window

* Fixed list box border

* vis issue on start, fixing border

* Revert "Merge branch 'somil55/MigrateSearchBoxToWPF' into fewTweaks"

This reverts commit 3525171621, reversing
changes made to b5daffca55.

* Remove change in startup visibility

Co-authored-by: Clint Rutkas <clint@rutkas.com>
2020-05-12 15:42:21 -07:00

12 lines
236 B
C#

using Windows.UI.Xaml.Controls;
namespace PowerLauncher.UI
{
public sealed partial class LauncherControl : UserControl
{
public LauncherControl()
{
InitializeComponent();
}
}
}