Content.cs 828 B

1234567891011121314151617181920212223242526272829303132333435
  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 SneakersSkakunov
  8. {
  9. public partial class Sneakers
  10. {
  11. public SolidColorBrush ColorSneak
  12. {
  13. get
  14. {
  15. if (Colors == "Black")
  16. {
  17. return new SolidColorBrush(Color.FromRgb(120, 120, 120));
  18. }
  19. else if (Colors == "White")
  20. {
  21. return Brushes.White;
  22. }
  23. else if (Colors == "Red")
  24. {
  25. return Brushes.IndianRed;
  26. }
  27. else
  28. {
  29. return Brushes.Beige;
  30. }
  31. }
  32. }
  33. }
  34. }