Advertisement
TimmyChannel

Untitled

Apr 1st, 2024
679
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.40 KB | None | 0 0
  1.     <Grid ShowGridLines="True">
  2.         <Grid.RowDefinitions>
  3.             <RowDefinition Height="1*"></RowDefinition>
  4.             <RowDefinition Height="3*"></RowDefinition>
  5.             <RowDefinition Height="1*"></RowDefinition>
  6.         </Grid.RowDefinitions>
  7.         <TextBlock Grid.Row="0"
  8.                   HorizontalAlignment="Center"
  9.                   Text="Заголовок экрана" />
  10.         <Grid Grid.Row="1"
  11.              ShowGridLines="True">
  12.             <Grid.ColumnDefinitions>
  13.                 <ColumnDefinition Width="1*"></ColumnDefinition>
  14.                 <ColumnDefinition Width="2*"></ColumnDefinition>
  15.             </Grid.ColumnDefinitions>
  16.             <Grid Grid.Column="0"
  17.                  ShowGridLines="True">
  18.                 <Grid.ColumnDefinitions>
  19.                     <ColumnDefinition></ColumnDefinition>
  20.                     <ColumnDefinition></ColumnDefinition>
  21.                 </Grid.ColumnDefinitions>
  22.  
  23.             </Grid>
  24.             <Button Grid.Column="1"
  25.                    Content=" Button"
  26.                    Margin="70,20,70,0"></Button>
  27.         </Grid>
  28.         <Grid Grid.Row="2"
  29.              ShowGridLines="True">
  30.             <Grid.ColumnDefinitions>
  31.                 <ColumnDefinition Width="2*"></ColumnDefinition>
  32.                 <ColumnDefinition Width="1*"></ColumnDefinition>
  33.             </Grid.ColumnDefinitions>
  34.         </Grid>
  35.     </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement