Advertisement
Guest User

Untitled

a guest
Mar 29th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. using Xamarin.Forms;
  8. using Xamarin.Forms.Xaml;
  9.  
  10. namespace ToDoList
  11. {
  12.  
  13. [XamlCompilation(XamlCompilationOptions.Compile)]
  14. public partial class CreateTaskPage : ContentPage
  15. {
  16. public static List<string> title { get; set; } = new List<string>();
  17. //public static List<string> content { get; set; } = new List<string>();
  18.  
  19.  
  20.  
  21.  
  22. public CreateTaskPage ()
  23. {
  24. InitializeComponent ();
  25. }
  26.  
  27. async void Addbtn(object obj, EventArgs args)
  28. {
  29. title.Add(Titletxt.Text);
  30. //content.Add(Contenttxt.Text);
  31. }
  32.  
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement