MainWindow.xaml 1.0 KB

1234567891011121314151617181920212223
  1. <Window x:Class="Тураев_БД_11._20._1.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:Тураев_БД_11._20._1"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="600" Width="800">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="*"/>
  12. <RowDefinition Height="235"/>
  13. <RowDefinition Height="*"/>
  14. </Grid.RowDefinitions>
  15. <Grid.ColumnDefinitions>
  16. <ColumnDefinition Width="*"/>
  17. <ColumnDefinition Width="295"/>
  18. <ColumnDefinition Width="*"/>
  19. </Grid.ColumnDefinitions>
  20. <Label Content="Label" Grid.Column="1" HorizontalAlignment="Left" Margin="88,81,0,0" Grid.Row="1" VerticalAlignment="Top"/>
  21. </Grid>
  22. </Window>