14 writes to b
PresentationCore (14)
System\Windows\Media\Color.cs (14)
46
c1.sRgbColor.
b
= 0;
96
c1.sRgbColor.
b
= ScRgbTosRgb(c1.scRgbColor.b);
121
c1.sRgbColor.
b
= (byte)(argb & 0x000000ff);
156
c1.sRgbColor.
b
= ScRgbTosRgb(c1.scRgbColor.b);
179
c1.sRgbColor.
b
= ScRgbTosRgb(c1.scRgbColor.b);
364
sRgbColor.
b
= ScRgbTosRgb(scRgbColor.b);
454
c1.sRgbColor.
b
= 0;
458
c1.sRgbColor.
b
= 255;
462
c1.sRgbColor.
b
= (byte)((sRGBValue[2] * 255.0f) + 0.5f);
571
c1.sRgbColor.
b
= 0;
575
c1.sRgbColor.
b
= 255;
579
c1.sRgbColor.
b
= (byte)((sRGBValue[2] * 255.0f) + 0.5f);
868
sRgbColor.
b
= value;
972
sRgbColor.
b
= ScRgbTosRgb(value);
6 references to b
PresentationCore (6)
System\Windows\Media\Color.cs (6)
125
c1.scRgbColor.b = sRgbToScRgb(c1.sRgbColor.
b
);
272
return string.Create(provider, stackalloc char[128], $"#{this.sRgbColor.a:X2}{this.sRgbColor.r:X2}{this.sRgbColor.g:X2}{this.sRgbColor.
b
:X2}");
467
c1.scRgbColor.b = sRgbToScRgb(c1.sRgbColor.
b
);
584
c1.scRgbColor.b = sRgbToScRgb(c1.sRgbColor.
b
);
861
return sRgbColor.
b
;
1098
Span<float> sRGBValue = [this.sRgbColor.r / 255.0f, this.sRgbColor.g / 255.0f, this.sRgbColor.
b
/ 255.0f];