LogWindow.xaml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <Window x:Class="Kusach.LogWindow"
  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:local="clr-namespace:Kusach"
  7. mc:Ignorable="d"
  8. Loaded="OnLoad"
  9. ResizeMode="NoResize"
  10. Title="Окно входа"
  11. Height="350" Width="600"
  12. WindowStartupLocation="CenterScreen">
  13. <Grid>
  14. <Label
  15. Content="Логин:"
  16. HorizontalAlignment="Left"
  17. Margin="180,45,0,0"
  18. VerticalAlignment="Top"
  19. Height="40"
  20. Width="240"/>
  21. <TextBox
  22. Name="logbox"
  23. HorizontalAlignment="Left"
  24. Margin="179,85,0,0"
  25. TextWrapping="Wrap"
  26. VerticalAlignment="Top"
  27. Height="40"
  28. Width="240"/>
  29. <Label
  30. Content="Пароль:"
  31. HorizontalAlignment="Left"
  32. Margin="180,125,0,0"
  33. VerticalAlignment="Top"
  34. Height="40"
  35. Width="240"/>
  36. <PasswordBox
  37. Name="passbox"
  38. HorizontalAlignment="Left"
  39. Margin="179,165,0,0"
  40. VerticalAlignment="Top"
  41. Height="40"
  42. Width="240"/>
  43. <Button
  44. x:Name="LogButton"
  45. Content="Вход"
  46. HorizontalAlignment="Left"
  47. Margin="324,228,0,0"
  48. VerticalAlignment="Top"
  49. Width="150"
  50. Click="LogButton_Click"
  51. IsDefault="True"
  52. Height="40"/>
  53. <Button
  54. x:Name="RegButton"
  55. Content="Регистрация"
  56. HorizontalAlignment="Left"
  57. Margin="123,228,0,0"
  58. VerticalAlignment="Top"
  59. Width="150"
  60. Click="RegButton_Click"
  61. Height="40"/>
  62. </Grid>
  63. </Window>