2020-08-06 05:06:55 +08:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
|
|
|
using System.Windows.Controls;
|
2020-05-13 06:42:21 +08:00
|
|
|
|
|
|
|
|
|
namespace PowerLauncher
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2020-06-02 03:35:37 +08:00
|
|
|
|
/// Interaction logic for LauncherControl.xaml
|
2020-05-13 06:42:21 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class LauncherControl : UserControl
|
|
|
|
|
{
|
|
|
|
|
public LauncherControl()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-06 05:06:55 +08:00
|
|
|
|
}
|