MainWindow.xaml
1 <?xml version="1.0" encoding="utf-8" ?> 2 <Window 3 x:Class="KeyboardManagerEditorUI.MainWindow" 4 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 5 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 6 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 7 xmlns:local="using:KeyboardManagerEditorUI" 8 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 9 Title="KeyboardManagerEditorUI" 10 mc:Ignorable="d"> 11 12 <StackPanel 13 HorizontalAlignment="Center" 14 VerticalAlignment="Center" 15 Orientation="Horizontal"> 16 <Button x:Name="myButton" Click="MyButton_Click">Click Me</Button> 17 </StackPanel> 18 </Window>