14 writes to b
PresentationCore (14)
System\Windows\Media\Color.cs (14)
48
c1.sRgbColor.
b
= 0;
98
c1.sRgbColor.
b
= ScRgbTosRgb(c1.scRgbColor.b);
123
c1.sRgbColor.
b
= (byte)(argb & 0x000000ff);
158
c1.sRgbColor.
b
= ScRgbTosRgb(c1.scRgbColor.b);
181
c1.sRgbColor.
b
= ScRgbTosRgb(c1.scRgbColor.b);
366
sRgbColor.
b
= ScRgbTosRgb(scRgbColor.b);
458
c1.sRgbColor.
b
= 0;
462
c1.sRgbColor.
b
= 255;
466
c1.sRgbColor.
b
= (byte)((sRGBValue[2] * 255.0f) + 0.5f);
577
c1.sRgbColor.
b
= 0;
581
c1.sRgbColor.
b
= 255;
585
c1.sRgbColor.
b
= (byte)((sRGBValue[2] * 255.0f) + 0.5f);
877
sRgbColor.
b
= value;
981
sRgbColor.
b
= ScRgbTosRgb(value);
6 references to b
PresentationCore (6)
System\Windows\Media\Color.cs (6)
127
c1.scRgbColor.b = sRgbToScRgb(c1.sRgbColor.
b
);
274
return string.Create(provider, stackalloc char[128], $"#{this.sRgbColor.a:X2}{this.sRgbColor.r:X2}{this.sRgbColor.g:X2}{this.sRgbColor.
b
:X2}");
471
c1.scRgbColor.b = sRgbToScRgb(c1.sRgbColor.
b
);
590
c1.scRgbColor.b = sRgbToScRgb(c1.sRgbColor.
b
);
870
return sRgbColor.
b
;
1107
Span<float> sRGBValue = [this.sRgbColor.r / 255.0f, this.sRgbColor.g / 255.0f, this.sRgbColor.
b
/ 255.0f];