PowerToys/src/modules/launcher/PowerLauncher/CheatSheetControl.xaml.cs
2021-06-06 15:32:21 +02:00

31 lines
798 B
C#

// 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;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace PowerLauncher
{
/// <summary>
/// Interaction logic for CheatSheetControl.xaml
/// </summary>
public partial class CheatSheetControl : UserControl
{
public CheatSheetControl()
{
InitializeComponent();
}
}
}