summaryrefslogtreecommitdiff
path: root/platform/winrt/gsview/Password.xaml
blob: 8692244f97b429ad16834888f145d4b6e08824bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Window x:Class="gsview.Password"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Height="110" Width="306">
    <Grid Background="WhiteSmoke">

        <StackPanel>
            <Label Content="Password:" />
            <PasswordBox x:Name="xaml_Password" Width="150" />
            <Button  Width="50" Height="20" Name="xaml_PasswordClick" Click="PasswordCheck" Margin="0,5,0,0" IsDefault="True">
                <TextBlock>OK</TextBlock>
            </Button>
        </StackPanel>
    </Grid>
</Window>