diff options
author | Guillaume <guillaumelacasa@hotmail.com> | 2013-06-12 21:09:11 +0200 |
---|---|---|
committer | Guillaume <guillaumelacasa@hotmail.com> | 2013-06-12 21:09:11 +0200 |
commit | 9cfb653f0b1ddcdc221a3abcb9e16769e0ab1d71 (patch) | |
tree | ea42b6de68090a31c86ca0e0dde571f092a38a7e /TwoStepsAuthenticator.TestApp/MainWindow.xaml | |
parent | b09d7395f2842cd908c02c81e91a5b3cecf415c6 (diff) | |
download | TwoStepsAuthenticator-9cfb653f0b1ddcdc221a3abcb9e16769e0ab1d71.zip TwoStepsAuthenticator-9cfb653f0b1ddcdc221a3abcb9e16769e0ab1d71.tar.gz TwoStepsAuthenticator-9cfb653f0b1ddcdc221a3abcb9e16769e0ab1d71.tar.bz2 |
Application de test
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> |