123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <Window x:Class="Kusach.LogWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:Kusach"
- mc:Ignorable="d"
- Loaded="OnLoad"
- ResizeMode="NoResize"
- Title="Окно входа"
- Height="350" Width="600"
- WindowStartupLocation="CenterScreen">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="99"/>
- </Grid.RowDefinitions>
- <StackPanel
- Grid.Row="0"
- Orientation="Vertical"
- VerticalAlignment="Center"
- HorizontalAlignment="Center">
- <Label
- Content="Логин:"
- HorizontalAlignment="Left"
- VerticalAlignment="Top"
- Height="40"
- Width="240"/>
- <TextBox
- Name="logbox"
- HorizontalAlignment="Left"
- TextWrapping="Wrap"
- VerticalAlignment="Top"
- Height="40"
- Width="240"/>
- <Label
- Content="Пароль:"
- HorizontalAlignment="Left"
- VerticalAlignment="Top"
- Height="40"
- Width="240"/>
- <PasswordBox
- Name="passbox"
- HorizontalAlignment="Left"
- VerticalAlignment="Top"
- Height="40"
- Width="240"/>
- </StackPanel>
- <StackPanel
- Orientation="Horizontal"
- Grid.Row="1"
- HorizontalAlignment="Center"
- VerticalAlignment="Center">
- <Button
- x:Name="RegButton"
- Content="Регистрация"
- Height="40"
- Width="150"
- Margin="0,0,30,0"
- Click="RegButton_Click"/>
- <Button
- x:Name="LogButton"
- Content="Вход"
- Height="40"
- Width="150"
- Click="LogButton_Click"/>
- </StackPanel>
- </Grid>
- </Window>
|