14 writes to b
PresentationCore (14)
System\Windows\Media\Color.cs (14)
47
c1.sRgbColor.
b
= 0;
97
c1.sRgbColor.
b
= ScRgbTosRgb(c1.scRgbColor.b);
122
c1.sRgbColor.
b
= (byte)(argb & 0x000000ff);
157
c1.sRgbColor.
b
= ScRgbTosRgb(c1.scRgbColor.b);
180
c1.sRgbColor.
b
= ScRgbTosRgb(c1.scRgbColor.b);
365
sRgbColor.
b
= ScRgbTosRgb(scRgbColor.b);
455
c1.sRgbColor.
b
= 0;
459
c1.sRgbColor.
b
= 255;
463
c1.sRgbColor.
b
= (byte)((sRGBValue[2] * 255.0f) + 0.5f);
572
c1.sRgbColor.
b
= 0;
576
c1.sRgbColor.
b
= 255;
580
c1.sRgbColor.
b
= (byte)((sRGBValue[2] * 255.0f) + 0.5f);
869
sRgbColor.
b
= value;
973
sRgbColor.
b
= ScRgbTosRgb(value);
6 references to b
PresentationCore (6)
System\Windows\Media\Color.cs (6)
126
c1.scRgbColor.b = sRgbToScRgb(c1.sRgbColor.
b
);
273
return string.Create(provider, stackalloc char[128], $"#{this.sRgbColor.a:X2}{this.sRgbColor.r:X2}{this.sRgbColor.g:X2}{this.sRgbColor.
b
:X2}");
468
c1.scRgbColor.b = sRgbToScRgb(c1.sRgbColor.
b
);
585
c1.scRgbColor.b = sRgbToScRgb(c1.sRgbColor.
b
);
862
return sRgbColor.
b
;
1099
Span<float> sRGBValue = [this.sRgbColor.r / 255.0f, this.sRgbColor.g / 255.0f, this.sRgbColor.
b
/ 255.0f];