ImageViewerEditor.xaml 1.1 KB

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <mobile:MobilePage
  3. xmlns:local="clr-namespace:PRS.Mobile"
  4. xmlns="http://xamarin.com/schemas/2014/forms"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  6. xmlns:xforms="clr-namespace:Syncfusion.SfImageEditor.XForms;assembly=Syncfusion.SfImageEditor.XForms"
  7. xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  8. x:Class="PRS.Mobile.ImageViewerEditor">
  9. <mobile:MobilePage.PrimaryMenu>
  10. <mobile:MobileMenuButton x:Name="_save" Image="save" Clicked="SaveBtn_Clicked" />
  11. </mobile:MobilePage.PrimaryMenu>
  12. <mobile:MobilePage.PageContent>
  13. <StackLayout>
  14. <xforms:SfImageEditor HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand"
  15. x:Name="imageEditor"
  16. />
  17. <mobile:MobileButton x:Name="_delete" Image="cross" Clicked="DeleteBtn_Clicked"/>
  18. <Label x:Name="blankLbl" Text=" " IsVisible="false" HeightRequest="50"/>
  19. </StackLayout>
  20. </mobile:MobilePage.PageContent>
  21. </mobile:MobilePage>