Service.cs 926 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Media;
  7. namespace User44
  8. {
  9. public partial class Agent
  10. {
  11. public string logo
  12. {
  13. get
  14. {
  15. if (Logo != null)
  16. {
  17. return Logo;
  18. }
  19. else
  20. {
  21. return "Pictures/picture.png";
  22. }
  23. }
  24. }
  25. public SolidColorBrush Neon
  26. {
  27. get
  28. {
  29. SolidColorBrush br = new SolidColorBrush(System.Windows.Media.Color.FromRgb(255, 153, 153));
  30. if (Priority < 2000)
  31. {
  32. return br;
  33. }
  34. else
  35. {
  36. return Brushes.White;
  37. }
  38. }
  39. }
  40. }
  41. }