diff options
Diffstat (limited to 'TwoStepsAuthenticator.TestApp/MainWindow.xaml')
-rw-r--r-- | TwoStepsAuthenticator.TestApp/MainWindow.xaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/TwoStepsAuthenticator.TestApp/MainWindow.xaml b/TwoStepsAuthenticator.TestApp/MainWindow.xaml new file mode 100644 index 0000000..43d5dd3 --- /dev/null +++ b/TwoStepsAuthenticator.TestApp/MainWindow.xaml @@ -0,0 +1,16 @@ +<Window x:Class="TwoStepsAuthenticatorTestApp.MainWindow" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + Title="MainWindow" Height="350" Width="525"> + <Grid> + <Grid.RowDefinitions> + <RowDefinition Height="Auto"/> + <RowDefinition Height="Auto"/> + <RowDefinition Height="*"/> + </Grid.RowDefinitions> + + <TextBox Grid.Row="0" Text="{Binding Key}"/> + <TextBlock Grid.Row="1" Text="{Binding Count}"></TextBlock> + <TextBlock Grid.Row="2" Text="{Binding Code}"></TextBlock> + </Grid> +</Window> |