MainWindow.xaml 1.2 KB

12345678910111213141516171819202122
  1. <Window x:Class="DuevaTours.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:DuevaTours"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="450" Width="800">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="75"/>
  12. <RowDefinition Height="*"/>
  13. <RowDefinition Height="30"/>
  14. </Grid.RowDefinitions>
  15. <Image Source="Resources/ktk_logo.png" HorizontalAlignment="Left" Width="78"></Image>
  16. <TextBlock Text=" Header" FontSize="30" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
  17. <Grid Background="Beige" Panel.ZIndex="-2"></Grid>
  18. <Grid Grid.Row="2" Background="Bisque"></Grid>
  19. <Frame NavigationUIVisibility="Hidden" Grid.Row="1" Name="MainFrame" ContentRendered="MainFrame_ContentRendered"></Frame>
  20. <Button Content="Back" Name="BtnBack" HorizontalAlignment="Right" Click="BtnBack_Click"></Button>
  21. </Grid>
  22. </Window>