CarouselDemoPage.xaml 584 B

1234567891011121314
  1. <ContentPage Theme="{StaticResource ScrollPage}" xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. Header="Carousel Demo Page"
  4. x:Class="ControlCatalog.Pages.CarouselDemoPage">
  5. <Grid>
  6. <NavigationPage x:Name="SampleNav">
  7. <NavigationPage.Styles>
  8. <Style Selector="NavigationPage#SampleNav /template/ Border#PART_NavigationBar">
  9. <Setter Property="Background" Value="Transparent" />
  10. </Style>
  11. </NavigationPage.Styles>
  12. </NavigationPage>
  13. </Grid>
  14. </ContentPage>