14 writes to b
PresentationCore (14)
System\Windows\Media\Color.cs (14)
56
c1.sRgbColor.
b
= 0;
106
c1.sRgbColor.
b
= ScRgbTosRgb(c1.scRgbColor.b);
131
c1.sRgbColor.
b
= (byte)(argb & 0x000000ff);
166
c1.sRgbColor.
b
= ScRgbTosRgb(c1.scRgbColor.b);
189
c1.sRgbColor.
b
= ScRgbTosRgb(c1.scRgbColor.b);
374
sRgbColor.
b
= ScRgbTosRgb(scRgbColor.b);
466
c1.sRgbColor.
b
= 0;
470
c1.sRgbColor.
b
= 255;
474
c1.sRgbColor.
b
= (byte)((sRGBValue[2] * 255.0f) + 0.5f);
585
c1.sRgbColor.
b
= 0;
589
c1.sRgbColor.
b
= 255;
593
c1.sRgbColor.
b
= (byte)((sRGBValue[2] * 255.0f) + 0.5f);
885
sRgbColor.
b
= value;
989
sRgbColor.
b
= ScRgbTosRgb(value);
6 references to b
PresentationCore (6)
System\Windows\Media\Color.cs (6)
135
c1.scRgbColor.b = sRgbToScRgb(c1.sRgbColor.
b
);
282
return string.Create(provider, stackalloc char[128], $"#{this.sRgbColor.a:X2}{this.sRgbColor.r:X2}{this.sRgbColor.g:X2}{this.sRgbColor.
b
:X2}");
479
c1.scRgbColor.b = sRgbToScRgb(c1.sRgbColor.
b
);
598
c1.scRgbColor.b = sRgbToScRgb(c1.sRgbColor.
b
);
878
return sRgbColor.
b
;
1115
Span<float> sRGBValue = [this.sRgbColor.r / 255.0f, this.sRgbColor.g / 255.0f, this.sRgbColor.
b
/ 255.0f];