10 writes to b
PresentationCore (10)
System\Windows\Media\Color.cs (10)
43
c1.scRgbColor.
b
= 0.0f;
126
c1.scRgbColor.
b
= sRgbToScRgb(c1.sRgbColor.b);
143
c1.scRgbColor.
b
= b;
175
c1.scRgbColor.
b
= sRgbToScRgb(b);
360
scRgbColor.
b
= (scRgbColor.b < 0) ? 0 : (scRgbColor.b > 1.0f) ? 1.0f : scRgbColor.b;
468
c1.scRgbColor.
b
= sRgbToScRgb(c1.sRgbColor.b);
585
c1.scRgbColor.
b
= sRgbToScRgb(c1.sRgbColor.b);
868
scRgbColor.
b
= sRgbToScRgb(value);
972
scRgbColor.
b
= value;
1090
this.scRgbColor.
b
= sRgbToScRgb((byte)((255.0f * scRGBValue[2]) + 0.5f));
19 references to b
PresentationCore (19)
System\Windows\Media\Color.cs (19)
97
c1.sRgbColor.b = ScRgbTosRgb(c1.scRgbColor.
b
);
157
c1.sRgbColor.b = ScRgbTosRgb(c1.scRgbColor.
b
);
180
c1.sRgbColor.b = ScRgbTosRgb(c1.scRgbColor.
b
);
281
separator, scRgbColor.a, scRgbColor.r, scRgbColor.g, scRgbColor.
b
);
340
result = result && FloatUtil.AreClose(scRgbColor.
b
, color.scRgbColor.
b
);
360
scRgbColor.b = (scRgbColor.
b
< 0) ? 0 : (scRgbColor.
b
> 1.0f) ? 1.0f : scRgbColor.
b
;
365
sRgbColor.b = ScRgbTosRgb(scRgbColor.
b
);
405
color1.scRgbColor.
b
+ color2.scRgbColor.
b
);
517
color1.scRgbColor.
b
- color2.scRgbColor.
b
627
Color c1 = FromScRgb(color.scRgbColor.a * coefficient, color.scRgbColor.r * coefficient, color.scRgbColor.g * coefficient, color.scRgbColor.
b
* coefficient);
709
if (color1.scRgbColor.
b
!= color2.scRgbColor.
b
)
965
return scRgbColor.
b
;
1135
return a.GetHashCode() ^ r.GetHashCode() ^ g.GetHashCode() ^
b
.GetHashCode();