You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
656 B

1 year ago
1 year ago
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:pdfViewer="http://schemas.syncfusion.com/maui"
  5. x:Class="CircleViewerMaui.MainPage">
  6. <ContentPage.MenuBarItems>
  7. <MenuBarItem Text="File">
  8. <MenuFlyoutItem Text="Open" Clicked="onOpenClicked"/>
  9. </MenuBarItem>
  10. </ContentPage.MenuBarItems>
  11. <ContentPage.Content>
  12. <pdfViewer:SfPdfViewer x:Name="PdfViewer" VerticalOptions="Fill">
  13. </pdfViewer:SfPdfViewer>
  14. </ContentPage.Content>
  15. </ContentPage>