Main.xaml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <Page x:Class="DemoExzamen.Main"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:DemoExzamen"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Main">
  10. <Grid >
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition></ColumnDefinition>
  13. <ColumnDefinition></ColumnDefinition>
  14. </Grid.ColumnDefinitions>
  15. <Grid.RowDefinitions>
  16. <RowDefinition></RowDefinition>
  17. <RowDefinition></RowDefinition>
  18. </Grid.RowDefinitions>
  19. <GroupBox Grid.Row="0" Grid.Column="0" Grid.RowSpan="2">
  20. <StackPanel Orientation="Vertical">
  21. <TextBlock Text="Отель: " FontSize="28" FontFamily="Comic Sans MS" HorizontalAlignment="Center" ></TextBlock>
  22. <TextBlock Text="Название Отеля: " Background="Gray" FontSize="24" ></TextBlock>
  23. <StackPanel Orientation="Vertical" Margin="0 100">
  24. <TextBlock Text="Тур: " FontSize="28" FontFamily="Comic Sans MS" HorizontalAlignment="Center"></TextBlock>
  25. <TextBlock Text="Название Тура: " Background="Gray" FontSize="24" ></TextBlock>
  26. </StackPanel>
  27. </StackPanel>
  28. </GroupBox>
  29. <GroupBox Grid.Row="0" Grid.Column="1" Grid.RowSpan="2" HorizontalAlignment="Center">
  30. <StackPanel Orientation="Vertical">
  31. <Image Source="Images/picture.png" Width="200" Height="200"></Image>
  32. <StackPanel Orientation="Horizontal">
  33. <Button Content="Назад" Height="30" Width="125" Margin="0 20 10 0"></Button>
  34. <Button Content="Далее" Height="30" Width="125" Margin="0 20 0 0"></Button>
  35. </StackPanel>
  36. </StackPanel>
  37. </GroupBox>
  38. </Grid>
  39. </Page>