10 writes to r
PresentationCore (10)
System\Windows\Media\Color.cs (10)
50
c1.scRgbColor.
r
= 0.0f;
133
c1.scRgbColor.
r
= sRgbToScRgb(c1.sRgbColor.r); // note that context is undefined and thus unloaded
150
c1.scRgbColor.
r
= r;
182
c1.scRgbColor.
r
= sRgbToScRgb(r); // note that context is undefined and thus unloaded
367
scRgbColor.
r
= (scRgbColor.r < 0) ? 0 : (scRgbColor.r > 1.0f) ? 1.0f : scRgbColor.r;
477
c1.scRgbColor.
r
= sRgbToScRgb(c1.sRgbColor.r);
596
c1.scRgbColor.
r
= sRgbToScRgb(c1.sRgbColor.r);
836
scRgbColor.
r
= sRgbToScRgb(value);
938
scRgbColor.
r
= value;
1104
this.scRgbColor.
r
= sRgbToScRgb((byte)((255.0f * scRGBValue[0]) + 0.5f));
19 references to r
PresentationCore (19)
System\Windows\Media\Color.cs (19)
104
c1.sRgbColor.r = ScRgbTosRgb(c1.scRgbColor.
r
);
164
c1.sRgbColor.r = ScRgbTosRgb(c1.scRgbColor.
r
);
187
c1.sRgbColor.r = ScRgbTosRgb(c1.scRgbColor.
r
);
290
separator, scRgbColor.a, scRgbColor.
r
, scRgbColor.g, scRgbColor.b);
347
result = result && FloatUtil.AreClose(scRgbColor.
r
, color.scRgbColor.
r
);
367
scRgbColor.r = (scRgbColor.
r
< 0) ? 0 : (scRgbColor.
r
> 1.0f) ? 1.0f : scRgbColor.
r
;
372
sRgbColor.r = ScRgbTosRgb(scRgbColor.
r
);
412
color1.scRgbColor.
r
+ color2.scRgbColor.
r
,
526
color1.scRgbColor.
r
- color2.scRgbColor.
r
,
640
Color c1 = FromScRgb(color.scRgbColor.a * coefficient, color.scRgbColor.
r
* coefficient, color.scRgbColor.g * coefficient, color.scRgbColor.b * coefficient);
715
if (color1.scRgbColor.
r
!= color2.scRgbColor.
r
)
931
return scRgbColor.
r
;
1151
return a.GetHashCode() ^
r
.GetHashCode() ^ g.GetHashCode() ^ b.GetHashCode();