Advertisement
Guest User

Untitled

a guest
May 25th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. using BHS.Pages;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace BHS.Utils
  9. {
  10. public class MenuListData : List<MenuItem>
  11. {
  12. public MenuListData()
  13. {
  14. this.Add(new MenuItem()
  15. {
  16. Title = "",
  17. IconSource = "drawable/home.png",
  18. TargetType = typeof(Home)
  19. });
  20.  
  21. this.Add(new MenuItem()
  22. {
  23. Title = "Contatos",
  24. IconSource = "drawable/agent.png",
  25. TargetType = typeof(Contatos)
  26. });
  27.  
  28. this.Add(new MenuItem() {
  29. Title = "Voucher Taxi",
  30. IconSource = "drawable/tag.png",
  31. TargetType = typeof(VoucherTaxi)
  32. });
  33. }
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement