mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-06-07 17:42:45 +08:00

* 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 commit3525171621
, reversing changes made tob5daffca55
. * Remove change in startup visibility Co-authored-by: Clint Rutkas <clint@rutkas.com>
12 lines
236 B
C#
12 lines
236 B
C#
using Windows.UI.Xaml.Controls;
|
|
|
|
namespace PowerLauncher.UI
|
|
{
|
|
public sealed partial class LauncherControl : UserControl
|
|
{
|
|
public LauncherControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |