Advertisement
kukus

@111

Oct 14th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Xamarin.Forms;
  8.  
  9. namespace App9
  10. {
  11. // Learn more about making custom code visible in the Xamarin.Forms previewer
  12. // by visiting https://aka.ms/xamarinforms-previewer
  13. [DesignTimeVisible(false)]
  14. public partial class MainPage : ContentPage
  15. {
  16. public MainPage()
  17. {
  18. InitializeComponent();
  19. }
  20.  
  21. private void Button_Clicked(object sender, EventArgs e)
  22. {
  23. btn.Text = "flex";
  24.  
  25. }
  26.  
  27. async void btn_Clicked(object sender, EventArgs args)
  28. {
  29. await label.RelRotateTo(360, 1000);
  30. }
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement