3074/Windows/Dialog/KeybindingDialog.xaml

15 lines
784 B
XML

<Window x:Class="tsf_3074.Windows.Dialog.KeybindingDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:tsf_3074.Windows.Dialog"
mc:Ignorable="d"
Title="KeybindingDialog" Height="400" Width="600" d:DataContext="{d:DesignInstance local:KeybindingDialogView}"
KeyDown="KeybindingDialog_OnKeyDown"
Topmost="True">
<Grid>
<TextBlock Text="{Binding StatusText}" FontSize="32" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
</Grid>
</Window>