SignatureEditor.xaml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ContentView xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:signaturePad="clr-namespace:Syncfusion.XForms.SignaturePad;assembly=Syncfusion.SfSignaturePad.XForms"
  5. x:Class="PRS.Mobile.SignatureEditor">
  6. <ContentView.Content>
  7. <Frame
  8. BorderColor="Gray"
  9. CornerRadius="5"
  10. HasShadow="False"
  11. Padding="0"
  12. BackgroundColor="LightYellow">
  13. <Grid>
  14. <Label Text="Signature" TextColor="Silver" VerticalTextAlignment="Center" HorizontalTextAlignment="Center" FontSize="Large"/>
  15. <signaturePad:SfSignaturePad
  16. x:Name="signaturePad"
  17. BackgroundColor="Transparent"
  18. MaximumStrokeWidth="17"
  19. MinimumStrokeWidth="0.2"
  20. StrokeColor="Navy"
  21. StrokeCompleted="SignaturePad_OnStrokeCompleted"
  22. />
  23. <Image
  24. IsVisible="False"
  25. BackgroundColor="LightGray"
  26. x:Name="_preview"/>
  27. </Grid>
  28. </Frame>
  29. </ContentView.Content>
  30. </ContentView>