Guest User

Untitled

a guest
May 22nd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:acr="clr-namespace:Acr.XamForms.SignaturePad;assembly=Acr.XamForms.SignaturePad"
  5. x:Class="App4.newpage">
  6. <ContentPage.Content>
  7. <ScrollView Orientation="Vertical">
  8. <StackLayout>
  9. <Button Text="button1"/>
  10. <Button Text="button2"/>
  11. <Button Text="button3"/>
  12. <Button Text="button4"/>
  13. <Button Text="button5"/>
  14. <Button Text="button6"/>
  15. <Button Text="button7"/>
  16. <Button Text="button8"/>
  17.  
  18. <acr:SignaturePadView
  19. x:Name="padView"
  20. HeightRequest="320"
  21. WidthRequest="240"
  22. BackgroundColor="White"
  23. CaptionText="Caption This"
  24. CaptionTextColor="Black"
  25. ClearText="Clear Me!"
  26. ClearTextColor="Red"
  27. PromptText="Prompt Here"
  28. PromptTextColor="Red"
  29. SignatureLineColor="Aqua"
  30. StrokeColor="Black"
  31. StrokeWidth="2"
  32. />
  33. </StackLayout>
  34. </ScrollView>
  35. </ContentPage.Content>
  36. </ContentPage>
Add Comment
Please, Sign In to add comment