1234567891011121314151617181920212223 |
- <Window x:Class="Hotel_Course_Project.LoginRememberWindow"
- 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:Hotel_Course_Project"
- mc:Ignorable="d"
- Title="Проверка логина" Height="200" Width="300" WindowStartupLocation="CenterScreen"
- Icon="pack://application:,,,/Resources/favicon.ico">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <TextBlock Grid.ColumnSpan="2" HorizontalAlignment="Center">Вы помните свой логин?</TextBlock>
- <Button x:Name="CancelBtn" Grid.Row="1" Click="CancelBtn_Click">Нет</Button>
- <Button x:Name="AcceptBtn" Grid.Row="1" Grid.Column="1" Click="AcceptBtn_Click">Да</Button>
- </Grid>
- </Window>
|