Guest User

Untitled

a guest
Mar 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <Grid>
  2. <Grid.RowDefinitions>
  3. <RowDefinition Height="0.35*"/>
  4. <RowDefinition Height="*"/>
  5. </Grid.RowDefinitions>
  6.  
  7. <Grid Grid.Row="0">
  8. <TextBlock Text="Заголовок страницы" HorizontalAlignment="Center" VerticalAlignment="Top" FontSize="35" Padding="0 10 0 25" FontFamily="Calibri Bold" Name="Title"/>
  9. <TextBlock Text="Подзаголовок" HorizontalAlignment="Center" VerticalAlignment="Top" FontSize="25" Padding="0 50 0 0" FontFamily="Calibri" Name="SubTitle"/>
  10. </Grid>
  11.  
  12. <Grid Grid.Row="1">
  13. <Grid.ColumnDefinitions>
  14. <ColumnDefinition Width="*"/>
  15. <ColumnDefinition Width="*"/>
  16. <ColumnDefinition Width="*"/>
  17. </Grid.ColumnDefinitions>
  18. <Grid.RowDefinitions>
  19. <RowDefinition Height="0.5*"/>
  20. <RowDefinition Height="*"/>
  21. </Grid.RowDefinitions>
  22.  
  23. <StackPanel Grid.Row="0" Orientation="Horizontal" Grid.ColumnSpan="4" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="25">
  24. <TextBlock Text="Варианты: " FontSize="18" Name="Options"/>
  25. <ComboBox SelectedIndex="1" Padding="2" FontSize="18" SelectionChanged="ComboBox_SelectionChanged" Name="dm">
  26. <ComboBoxItem>2</ComboBoxItem>
  27. <ComboBoxItem>3</ComboBoxItem>
  28. <ComboBoxItem>4</ComboBoxItem>
  29. <ComboBoxItem>5</ComboBoxItem>
  30. </ComboBox>
  31. </StackPanel>
  32. </Grid>
Add Comment
Please, Sign In to add comment