PDFViewer.xaml 939 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <timesheets:BasePage xmlns:timesheets="clr-namespace:comal.timesheets" 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="comal.timesheets.PDFViewer"
  6. Title="PDF Viewer">
  7. <timesheets:BasePage.ActionButtons>
  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. </timesheets:BasePage.ActionButtons>
  11. <timesheets:BasePage.PageContent>
  12. <syncfusion:SfPdfViewer x:Name="pdfViewerControl" IsToolbarVisible="False" PageViewMode="PageByPage" />
  13. </timesheets:BasePage.PageContent>
  14. </timesheets:BasePage>