blob: 43d5dd3a4adcb3dd249aed7c7e02ec28685b53fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
|