10 writes to b
PresentationCore (10)
System\Windows\Media\Color.cs (10)
44
c1.scRgbColor.
b
= 0.0f;
127
c1.scRgbColor.
b
= sRgbToScRgb(c1.sRgbColor.b);
144
c1.scRgbColor.
b
= b;
176
c1.scRgbColor.
b
= sRgbToScRgb(b);
361
scRgbColor.
b
= (scRgbColor.b < 0) ? 0 : (scRgbColor.b > 1.0f) ? 1.0f : scRgbColor.b;
471
c1.scRgbColor.
b
= sRgbToScRgb(c1.sRgbColor.b);
590
c1.scRgbColor.
b
= sRgbToScRgb(c1.sRgbColor.b);
876
scRgbColor.
b
= sRgbToScRgb(value);
980
scRgbColor.
b
= value;
1098
this.scRgbColor.
b
= sRgbToScRgb((byte)((255.0f * scRGBValue[2]) + 0.5f));
19 references to b
PresentationCore (19)
System\Windows\Media\Color.cs (19)
98
c1.sRgbColor.b = ScRgbTosRgb(c1.scRgbColor.
b
);
158
c1.sRgbColor.b = ScRgbTosRgb(c1.scRgbColor.
b
);
181
c1.sRgbColor.b = ScRgbTosRgb(c1.scRgbColor.
b
);
282
separator, scRgbColor.a, scRgbColor.r, scRgbColor.g, scRgbColor.
b
);
341
result = result && FloatUtil.AreClose(scRgbColor.
b
, color.scRgbColor.
b
);
361
scRgbColor.b = (scRgbColor.
b
< 0) ? 0 : (scRgbColor.
b
> 1.0f) ? 1.0f : scRgbColor.
b
;
366
sRgbColor.b = ScRgbTosRgb(scRgbColor.
b
);
406
color1.scRgbColor.
b
+ color2.scRgbColor.
b
);
520
color1.scRgbColor.
b
- color2.scRgbColor.
b
632
Color c1 = FromScRgb(color.scRgbColor.a * coefficient, color.scRgbColor.r * coefficient, color.scRgbColor.g * coefficient, color.scRgbColor.
b
* coefficient);
717
if (color1.scRgbColor.
b
!= color2.scRgbColor.
b
)
973
return scRgbColor.
b
;
1143
return a.GetHashCode() ^ r.GetHashCode() ^ g.GetHashCode() ^
b
.GetHashCode();