Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <AbsoluteLayout.GestureRecognizers>
  2. <SwipeGestureRecognizer Direction="Right" Swiped="SwipeGestureRecognizer_Swiped"/>
  3. </AbsoluteLayout.GestureRecognizers>
  4.  
  5.  
  6. <Label x:Name="Username"
  7. AbsoluteLayout.LayoutBounds="180, 20, 200, 100"
  8. Text="Sint Gordon" TextColor="White" FontSize="Large"
  9. FontFamily="Proxima Nova bold">
  10. </Label>
  11. ```XAML
  12.  
  13.  
  14. C#
  15. ```c#
  16. SwipeGestureRecognizer swipeRecon = new SwipeGestureRecognizer();
  17.  
  18.  
  19. private void SwipeGestureRecognizer_Swiped(object sender, SwipedEventArgs e)
  20. {
  21. Username.Text = "You swiped right";
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement