Files
Hyperbar/Hyperbar.Desktop.Contextual/ContextualCommandView.xaml.cs
T
TheXamlGuy 97270eeed4 Cleanup etc
2024-01-04 22:33:22 +00:00

16 lines
410 B
C#

using Hyperbar.Desktop.Win32;
using Microsoft.UI.Xaml.Controls;
using Windows.System;
namespace Hyperbar.Desktop.Contextual;
public sealed partial class ContextualCommandView : Page
{
public ContextualCommandView() => InitializeComponent();
private void Button_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e)
{
KeyInterop.Type((VirtualKey)186, VirtualKey.LeftWindows);
}
}