21 references to ParseHexChar
PresentationCore (21)
System\Windows\Media\Parsers.cs (21)
45
a =
ParseHexChar
(trimmedColor[1]) * 16 +
ParseHexChar
(trimmedColor[2]);
46
r =
ParseHexChar
(trimmedColor[3]) * 16 +
ParseHexChar
(trimmedColor[4]);
47
g =
ParseHexChar
(trimmedColor[5]) * 16 +
ParseHexChar
(trimmedColor[6]);
48
b =
ParseHexChar
(trimmedColor[7]) * 16 +
ParseHexChar
(trimmedColor[8]);
52
r =
ParseHexChar
(trimmedColor[1]) * 16 +
ParseHexChar
(trimmedColor[2]);
53
g =
ParseHexChar
(trimmedColor[3]) * 16 +
ParseHexChar
(trimmedColor[4]);
54
b =
ParseHexChar
(trimmedColor[5]) * 16 +
ParseHexChar
(trimmedColor[6]);
58
a =
ParseHexChar
(trimmedColor[1]);
60
r =
ParseHexChar
(trimmedColor[2]);
62
g =
ParseHexChar
(trimmedColor[3]);
64
b =
ParseHexChar
(trimmedColor[4]);
69
r =
ParseHexChar
(trimmedColor[1]);
71
g =
ParseHexChar
(trimmedColor[2]);
73
b =
ParseHexChar
(trimmedColor[3]);