ImageViewer.xaml 948 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <timesheets:BasePage
  3. xmlns="http://xamarin.com/schemas/2014/forms"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  5. xmlns:imageeditor="clr-namespace:Syncfusion.SfImageEditor.XForms;assembly=Syncfusion.SfImageEditor.XForms"
  6. xmlns:timesheets="clr-namespace:comal.timesheets"
  7. x:Class="comal.timesheets.ImageViewer"
  8. Title="Image Viewer">
  9. <timesheets:BasePage.ActionButtons>
  10. <ImageButton x:Name="_delete" Source="delete" Clicked="DeleteBtn_Clicked"/>
  11. </timesheets:BasePage.ActionButtons>
  12. <timesheets:BasePage.PageContent>
  13. <imageeditor:SfImageEditor Source="{Binding}">
  14. <imageeditor:SfImageEditor.ToolbarSettings>
  15. <imageeditor:ToolbarSettings IsVisible="false" />
  16. </imageeditor:SfImageEditor.ToolbarSettings>
  17. </imageeditor:SfImageEditor>
  18. </timesheets:BasePage.PageContent>
  19. </timesheets:BasePage>