PartClass.cs 790 B

12345678910111213141516171819202122232425262728293031323334
  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 Namordnik
  8. {
  9. public partial class Product
  10. {
  11. public string Header
  12. {
  13. get
  14. {
  15. return ProductType.Title + " | " + Title;
  16. }
  17. }
  18. public SolidColorBrush PrColor
  19. {
  20. get
  21. {
  22. SolidColorBrush bl = new SolidColorBrush(Color.FromRgb(176, 229, 253));
  23. SolidColorBrush lr = new SolidColorBrush(Color.FromRgb(250, 110, 110));
  24. if (MinCostForAgent > 2000)
  25. {
  26. return lr;
  27. }
  28. else return bl;
  29. }
  30. }
  31. }
  32. }