Rename projects to better structure it. The aim is to try and keep it not dependant on the type of UI framework it uses thus allowing us to switch to another UI framework if we need later...
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using Hyperbar.Windows.Win32;
|
||||
using Microsoft.UI.Xaml.Controls;
|
||||
using Windows.System;
|
||||
|
||||
namespace Hyperbar.Windows.Contextual;
|
||||
|
||||
public sealed partial class ContextualCommandWidgetView : Page
|
||||
{
|
||||
public ContextualCommandWidgetView() => InitializeComponent();
|
||||
|
||||
private void Button_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e)
|
||||
{
|
||||
KeyInterop.Type(VirtualKey.L, VirtualKey.LeftWindows, VirtualKey.Control);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user