1234567891011121314151617181920212223 |
- <Window x:Class="ПодготовкаКДемо1.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:ПодготовкаКДемо1"
- mc:Ignorable="d"
- Title="Путешествуй по России" Icon="Снимок.JPG" Height="450" Width="800">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="1*"/>
- <ColumnDefinition Width="5*"/>
- </Grid.ColumnDefinitions>
- <StackPanel>
- <Image VerticalAlignment="Top" Source="Снимок.JPG"/>
- <Button x:Name="btnTourListGo" Content="Список туров" Style="{StaticResource Button}" Click="btnTourListGo_Click"/>
- <Button x:Name="btnHotelListGo" Content="Список отелей" Style="{StaticResource Button}" Click="btnHotelListGo_Click"/>
- <Button x:Name="btnCaptcha" Content="Капча" Style="{StaticResource Button}" Click="btnCaptcha_Click"/>
- </StackPanel>
-
- <Frame Name="MainFrame" Grid.Column="2" NavigationUIVisibility="Hidden"/>
- </Grid>
- </Window>
|