12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <Page x:Class="DemoExzamen.Main"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:DemoExzamen"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="Main">
- <Grid >
- <Grid.ColumnDefinitions>
- <ColumnDefinition></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
-
- <GroupBox Grid.Row="0" Grid.Column="0" Grid.RowSpan="2">
- <StackPanel Orientation="Vertical">
- <TextBlock Text="Отель: " FontSize="28" FontFamily="Comic Sans MS" HorizontalAlignment="Center" ></TextBlock>
- <TextBlock Text="Название Отеля: " Background="Gray" FontSize="24" ></TextBlock>
- <StackPanel Orientation="Vertical" Margin="0 100">
- <TextBlock Text="Тур: " FontSize="28" FontFamily="Comic Sans MS" HorizontalAlignment="Center"></TextBlock>
- <TextBlock Text="Название Тура: " Background="Gray" FontSize="24" ></TextBlock>
- </StackPanel>
-
- </StackPanel>
- </GroupBox>
- <GroupBox Grid.Row="0" Grid.Column="1" Grid.RowSpan="2" HorizontalAlignment="Center">
- <StackPanel Orientation="Vertical">
- <Image Source="Images/picture.png" Width="200" Height="200"></Image>
- <StackPanel Orientation="Horizontal">
- <Button Content="Назад" Height="30" Width="125" Margin="0 20 10 0"></Button>
- <Button Content="Далее" Height="30" Width="125" Margin="0 20 0 0"></Button>
- </StackPanel>
-
- </StackPanel>
- </GroupBox>
-
-
-
-
-
-
-
- </Grid>
- </Page>
|