LoginScreen.xaml 1.5 KB

123456789101112131415161718192021
  1. <wpf:ThemableWindow x:Class="PRSDesktop.LoginScreen"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:wpf="clr-namespace:InABox.Wpf;assembly=InABox.Wpf"
  7. mc:Ignorable="d"
  8. Title="LoginScreen" Height="143.911" Width="214.76" WindowStartupLocation="CenterScreen">
  9. <Grid>
  10. <Label Content="User Name" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" />
  11. <Label Content="Password" HorizontalAlignment="Left" Margin="10,41,0,0" VerticalAlignment="Top" />
  12. <TextBox x:Name="editUser" TabIndex="0" Height="23" Margin="83,14,10,0" TextWrapping="Wrap"
  13. VerticalAlignment="Top" TextChanged="editUser_TextChanged" />
  14. <PasswordBox x:Name="editPassword" TabIndex="1" Margin="83,45,10,0" VerticalAlignment="Top" Height="22"
  15. KeyUp="EditPassword_KeyUp" />
  16. <Button x:Name="btnOK" TabIndex="2" Content="OK" Margin="0,0,89.6,10.4" Height="19" VerticalAlignment="Bottom"
  17. HorizontalAlignment="Right" Width="75" Click="btnOK_Click" IsDefault="True" />
  18. <Button x:Name="btnCancel" TabIndex="3" Content="Cancel" Margin="0,0,9.6,10.4" Height="19"
  19. VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="75" Click="btnCancel_Click" />
  20. </Grid>
  21. </wpf:ThemableWindow>