12345678910111213141516171819202122232425262728293031 |
- <Window x:Class="Logistics_application.MainWindow"
- 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:Logistics_application"
- mc:Ignorable="d"
- Title="Логистики 'Грузи-Вези'" Height="400" Width="600" WindowStartupLocation="CenterScreen">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <TextBlock Text="Логин" Grid.Column="1" FontSize="20" TextAlignment="Center" Margin="0,42,0,0"/>
- <TextBox Name="login" Grid.Column="1" Grid.Row="1"/>
- <TextBlock Text="Пароль" Grid.Column="1" Grid.Row="2" FontSize="20" TextAlignment="Center" Margin="0,42,0,0"/>
- <PasswordBox Name="password" Grid.Column="1" Grid.Row="3"/>
- <Button Content="Вход" Grid.Column="1" Grid.Row="4" FontSize="20" Click="LoginToApplication"/>
-
- </Grid>
- </Window>
|