12345678910111213141516171819202122232425262728 |
- <Window x:Class="Hotel_Course_Project.ChangePasLogWindow"
- 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" Loaded="Window_Loaded"
- Icon="pack://application:,,,/Resources/favicon.ico">
-
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <TextBlock>Логин</TextBlock>
- <TextBlock Grid.Row="1">Пароль</TextBlock>
- <TextBox Grid.Column="1" Name="TBLogin"></TextBox>
- <TextBox Grid.Column="1" Grid.Row="1" Name="TBPassword" ></TextBox>
- <Button Grid.Row="2" Name="BackBtn" Click="BackBtn_Click">Назад</Button>
- <Button Grid.Row="2" Grid.Column="1" Name="SaveBtn" Click="SaveBtn_Click">Изменить</Button>
- </Grid>
- </Window>
|