TourPart.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using Avalonia.Platform;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Drawing;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace TourAgent.Models
  9. {
  10. public partial class Tour
  11. {
  12. //public Bitmap GetPic
  13. //{
  14. // get
  15. // {
  16. // //Bitmap pic = null;
  17. // /*pic = new Bitmap(AssetLoader.Open(new Uri($"avares://ToutAgent/Assets/Туры фото/{Name.ToString()}.jpg")));
  18. // if(pic != null )
  19. // {
  20. // return pic;
  21. // }
  22. // else
  23. // {*/
  24. // return new Bitmap("Assets/Pictures/pic.png");
  25. // //}
  26. // }
  27. //}
  28. public string GetActual
  29. {
  30. get
  31. {
  32. if (IsActual[0] == true)
  33. {
  34. return "Актуален";
  35. }
  36. else
  37. {
  38. return "Не актуал";
  39. }
  40. }
  41. }
  42. }
  43. }