SignatureEditor.xaml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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="comal.timesheets.SignatureEditor">
  6. <ContentView.Content>
  7. <Frame
  8. BorderColor="#15C7C1"
  9. CornerRadius="5">
  10. <Grid>
  11. <signaturePad:SfSignaturePad
  12. x:Name="signaturePad"
  13. BackgroundColor="LightYellow"
  14. MaximumStrokeWidth="17"
  15. MinimumStrokeWidth="0.2"
  16. StrokeColor="Navy"
  17. StrokeCompleted="SignaturePad_OnStrokeCompleted"
  18. />
  19. <Image
  20. IsVisible="False"
  21. BackgroundColor="LightGray"
  22. x:Name="_preview" />
  23. </Grid>
  24. </Frame>
  25. </ContentView.Content>
  26. </ContentView>