SignatureSaver.xaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <timesheets:BasePage
  3. xmlns:timesheets="clr-namespace:comal.timesheets"
  4. xmlns="http://xamarin.com/schemas/2014/forms"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  6. xmlns:signature="clr-namespace:Syncfusion.XForms.SignaturePad;assembly=Syncfusion.SfSignaturePad.XForms"
  7. x:Class="comal.timesheets.SignatureSaver">
  8. <timesheets:BasePage.ActionButtons>
  9. <ImageButton Source="floppydisk" Clicked="Save_Clicked"/>
  10. </timesheets:BasePage.ActionButtons>
  11. <timesheets:BasePage.PageContent>
  12. <StackLayout Margin="5" Padding="5">
  13. <Label Text="This Signature Pad will securely save a copy of your signature to the database for use in Digital Form acknowledgements only. You SHOULD NOT use your real signature here."
  14. HorizontalOptions="Center" VerticalOptions="Center" LineBreakMode="WordWrap" FontSize="Medium"
  15. />
  16. <Frame BorderColor="#15C7C1" CornerRadius="10">
  17. <signature:SfSignaturePad x:Name="signaturePad" BackgroundColor="LightGray" MaximumStrokeWidth="17" MinimumStrokeWidth="0.2"
  18. HeightRequest="200"
  19. />
  20. </Frame>
  21. <Grid>
  22. <Grid.ColumnDefinitions>
  23. <ColumnDefinition Width="*"/>
  24. <ColumnDefinition Width="*"/>
  25. </Grid.ColumnDefinitions>
  26. <Button Grid.Column="0" TextColor="White" BackgroundColor="#15C7C1" CornerRadius="10" Clicked="Clear_Clicked" FontSize="Medium"
  27. Text="Clear Pad" FontAttributes="Bold" HorizontalOptions="FillAndExpand" VerticalOptions="Center"
  28. />
  29. <Button Grid.Column="1" TextColor="White" BackgroundColor="#15C7C1" CornerRadius="10" Clicked="DeleteSaved_Clicked" FontSize="Medium"
  30. Text="Delete Saved" FontAttributes="Bold" HorizontalOptions="FillAndExpand" VerticalOptions="Center"
  31. />
  32. </Grid>
  33. </StackLayout>
  34. </timesheets:BasePage.PageContent>
  35. </timesheets:BasePage>