1234567891011121314151617 |
- <?xml version="1.0" encoding="utf-8" ?>
- <timesheets:BasePage xmlns:timesheets="clr-namespace:comal.timesheets" xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- xmlns:syncfusion="clr-namespace:Syncfusion.SfPdfViewer.XForms;assembly=Syncfusion.SfPdfViewer.XForms"
-
- x:Class="comal.timesheets.PDFViewer"
- Title="PDF Viewer">
-
- <timesheets:BasePage.ActionButtons>
- <ImageButton x:Name="_share" Source="share.png" Clicked="ShareBtn_Clicked" Margin="5" />
- <ImageButton x:Name="_print" Source="printer.png" Clicked="PrintBtn_Clicked" Margin="5" />
- </timesheets:BasePage.ActionButtons>
-
- <timesheets:BasePage.PageContent>
- <syncfusion:SfPdfViewer x:Name="pdfViewerControl" IsToolbarVisible="False" PageViewMode="PageByPage" />
- </timesheets:BasePage.PageContent>
- </timesheets:BasePage>
|