PageNavigate.axaml 1.1 KB

123456789101112131415161718192021
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
  6. xmlns:vm="using:UPtur.ViewModels"
  7. x:DataType="vm:MainWindowViewModel"
  8. x:Class="UPtur.Views.PageNavigate">
  9. <Grid >
  10. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" >
  11. <TextBlock FontSize="20" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,0,0,40" > Путешествуй по России </TextBlock>
  12. <Button Background="" Command="{Binding ChangePageToTours}" HorizontalContentAlignment="Center" Content="Просмотр Туров" Width="250" Height="32" > </Button>
  13. <Button Background="" Command="{Binding ChangePageToHotels}" HorizontalContentAlignment="Center" Margin="0,20,0,0" Content="Просмотр Отелей" Width="250" Height="32" > </Button>
  14. </StackPanel>
  15. </Grid>
  16. </UserControl>