Authorisation.xaml 1.2 KB

12345678910111213141516171819
  1. <Page x:Class="ProjectCafe.Authorisation"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:ProjectCafe"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Авторизация">
  10. <Grid>
  11. <Button Content="Войти" HorizontalAlignment="Left" Margin="164,276,0,0" VerticalAlignment="Top" Width="75" Click="Auth_Ckick"/>
  12. <TextBlock HorizontalAlignment="Left" Margin="164,170,0,0" TextWrapping="Wrap" Text="Логин" VerticalAlignment="Top" Height="25" Width="60"/>
  13. <TextBlock HorizontalAlignment="Left" Margin="164,205,0,0" TextWrapping="Wrap" Text="Пароль" VerticalAlignment="Top" Height="28" Width="60"/>
  14. <TextBox Name="txtLogin" HorizontalAlignment="Left" Height="23" Margin="268,172,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="120"/>
  15. <PasswordBox Name="txtPassword" HorizontalAlignment="Left" Margin="268,205,0,0" VerticalAlignment="Top" Width="120" Height="28"/>
  16. </Grid>
  17. </Page>