PDFViewer.xaml 888 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <local:BasePage xmlns:local="clr-namespace:PRS.Mobile" xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:syncfusion="clr-namespace:Syncfusion.SfPdfViewer.XForms;assembly=Syncfusion.SfPdfViewer.XForms"
  5. x:Class="PRS.Mobile.PDFViewer"
  6. Title="PDF Viewer">
  7. <local:BasePage.PrimaryMenu>
  8. <ImageButton x:Name="_share" Source="share.png" Clicked="ShareBtn_Clicked" Margin="5" />
  9. <ImageButton x:Name="_print" Source="printer.png" Clicked="PrintBtn_Clicked" Margin="5" />
  10. </local:BasePage.PrimaryMenu>
  11. <local:BasePage.PageContent>
  12. <syncfusion:SfPdfViewer x:Name="pdfViewerControl" IsToolbarVisible="False" PageViewMode="PageByPage" />
  13. </local:BasePage.PageContent>
  14. </local:BasePage>