MainWindow.xaml 1.4 KB

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