1234567891011121314151617181920212223242526272829303132 |
- <Page x:Class="Reks.Pages.Authorization"
- 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:Reks.Pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="Authorization"
- Background="White">
- <Grid>
- <TextBlock HorizontalAlignment="Center" Margin="0,100,0,0" >Вход</TextBlock>
- <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Width="500" >
- <TextBlock HorizontalAlignment="Center" Text="Логин"/>
- <TextBox Background="#0000" Name="EnteredLogin"/>
- <TextBlock HorizontalAlignment="Center" Text="Пароль"/>
- <TextBox Background="#0000" Name="EnteredPass"/>
- <Button Name="AuthUser" Click="GoAuth" Margin="0,10,0,0" Content="Войти (Полный доступ)"/>
- <Button Name="AuthGuest" Click="GoGuest" Margin="0,5,0,0" Content="Войти (Только просмотр)"/>
- <StackPanel Margin="0,10,0,0" Visibility="Collapsed" Name="Capa">
- <Image Source="\Pictures\capcha.png"/>
- <TextBlock Text="Введите текст с картинки"/>
- <TextBox Name="CapaText"/>
- </StackPanel>
- </StackPanel>
- </Grid>
- </Page>
|