21 references to ParseHexChar
PresentationCore (21)
System\Windows\Media\Parsers.cs (21)
46
a =
ParseHexChar
(trimmedColor[1]) * 16 +
ParseHexChar
(trimmedColor[2]);
47
r =
ParseHexChar
(trimmedColor[3]) * 16 +
ParseHexChar
(trimmedColor[4]);
48
g =
ParseHexChar
(trimmedColor[5]) * 16 +
ParseHexChar
(trimmedColor[6]);
49
b =
ParseHexChar
(trimmedColor[7]) * 16 +
ParseHexChar
(trimmedColor[8]);
53
r =
ParseHexChar
(trimmedColor[1]) * 16 +
ParseHexChar
(trimmedColor[2]);
54
g =
ParseHexChar
(trimmedColor[3]) * 16 +
ParseHexChar
(trimmedColor[4]);
55
b =
ParseHexChar
(trimmedColor[5]) * 16 +
ParseHexChar
(trimmedColor[6]);
59
a =
ParseHexChar
(trimmedColor[1]);
61
r =
ParseHexChar
(trimmedColor[2]);
63
g =
ParseHexChar
(trimmedColor[3]);
65
b =
ParseHexChar
(trimmedColor[4]);
70
r =
ParseHexChar
(trimmedColor[1]);
72
g =
ParseHexChar
(trimmedColor[2]);
74
b =
ParseHexChar
(trimmedColor[3]);