14 writes to g
PresentationCore (14)
System\Windows\Media\Color.cs (14)
55
c1.sRgbColor.
g
= 0;
105
c1.sRgbColor.
g
= ScRgbTosRgb(c1.scRgbColor.g);
130
c1.sRgbColor.
g
= (byte)((argb & 0x0000ff00) >> 8);
165
c1.sRgbColor.
g
= ScRgbTosRgb(c1.scRgbColor.g);
188
c1.sRgbColor.
g
= ScRgbTosRgb(c1.scRgbColor.g);
373
sRgbColor.
g
= ScRgbTosRgb(scRgbColor.g);
453
c1.sRgbColor.
g
= 0;
457
c1.sRgbColor.
g
= 255;
461
c1.sRgbColor.
g
= (byte)((sRGBValue[1] * 255.0f) + 0.5f);
572
c1.sRgbColor.
g
= 0;
576
c1.sRgbColor.
g
= 255;
580
c1.sRgbColor.
g
= (byte)((sRGBValue[1] * 255.0f) + 0.5f);
861
sRgbColor.
g
= value;
964
sRgbColor.
g
= ScRgbTosRgb(value);
6 references to g
PresentationCore (6)
System\Windows\Media\Color.cs (6)
134
c1.scRgbColor.g = sRgbToScRgb(c1.sRgbColor.
g
);
282
return string.Create(provider, stackalloc char[128], $"#{this.sRgbColor.a:X2}{this.sRgbColor.r:X2}{this.sRgbColor.
g
:X2}{this.sRgbColor.b:X2}");
478
c1.scRgbColor.g = sRgbToScRgb(c1.sRgbColor.
g
);
597
c1.scRgbColor.g = sRgbToScRgb(c1.sRgbColor.
g
);
854
return sRgbColor.
g
;
1115
Span<float> sRGBValue = [this.sRgbColor.r / 255.0f, this.sRgbColor.
g
/ 255.0f, this.sRgbColor.b / 255.0f];