15 lines
307 B
C#
15 lines
307 B
C#
using Microsoft.UI.Xaml.Controls;
|
|
using Microsoft.UI.Xaml.Input;
|
|
|
|
namespace Hyperbar.Windows;
|
|
|
|
public sealed partial class CommandView :
|
|
UserControl
|
|
{
|
|
public CommandView() => InitializeComponent();
|
|
|
|
protected override void OnKeyDown(KeyRoutedEventArgs e)
|
|
{
|
|
base.OnKeyDown(e);
|
|
}
|
|
} |