Browse Source

Создание первоначального "интерфейса" для проверки git

Funkyman3438@mail.ru 2 years ago
parent
commit
eb0a10b832
1 changed files with 9 additions and 1 deletions
  1. 9 1
      Demo_Gromov/MainWindow.xaml

+ 9 - 1
Demo_Gromov/MainWindow.xaml

@@ -7,6 +7,14 @@
         mc:Ignorable="d"
         Title="MainWindow" Height="450" Width="800">
     <Grid>
-        
+        <Grid.RowDefinitions>
+            <RowDefinition Height="37*"/>
+            <RowDefinition Height="348*"/>
+            <RowDefinition Height="49*"/>
+        </Grid.RowDefinitions>
+        <StackPanel Grid.Row="0" Background="Azure"/>
+        <TextBlock Grid.Row="1" Text="Проверка !" FontSize="100" HorizontalAlignment="Center" Margin="0,90,0,0"/>
+        <StackPanel Grid.Row="2" Background="Azure"/>
+
     </Grid>
 </Window>