-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathColorChangedConverter.cs
45 lines (43 loc) · 1.19 KB
/
ColorChangedConverter.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System.Globalization;
namespace PCCE
{
public class ColorChangedConverter : IValueConverter
{
public object? Convert(object? value, Type targetType, object? parameter, CultureInfo culture)
{
if (value == null) return Colors.Grey;
if ((byte)value == 1) // camper
{
return Colors.Red;
}
else if ((byte)value == 2) // ground
{
return Colors.Orange;
}
else if ((byte)value == 3) // player
{
return Colors.Yellow;
}
else if ((byte)value == 4) // animal
{
return Colors.Green;
}
else if ((byte)value == 5) // cabin
{
return Colors.Blue;
}
else if ((byte)value == 6)
{
return Colors.Purple;
}
else
{
return Colors.Gray;
}
}
public object? ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}