ImageViewer.xaml 976 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ContentPage
  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. x:Class="comal.timesheets.ImageViewer">
  7. <NavigationPage.TitleView>
  8. <Button HorizontalOptions="End" VerticalOptions="Center" TextColor="White" BackgroundColor="Transparent" Margin="0" Padding="0"
  9. x:Name="deleteBtn" IsVisible="false"
  10. Text="Delete" Clicked="DeleteBtn_Clicked"/>
  11. </NavigationPage.TitleView>
  12. <ContentPage.Content>
  13. <imageeditor:SfImageEditor Source="{Binding}">
  14. <imageeditor:SfImageEditor.ToolbarSettings>
  15. <imageeditor:ToolbarSettings IsVisible="false" />
  16. </imageeditor:SfImageEditor.ToolbarSettings>
  17. </imageeditor:SfImageEditor>
  18. </ContentPage.Content>
  19. </ContentPage>