14 writes to g
PresentationCore (14)
System\Windows\Media\Color.cs (14)
45
c1.sRgbColor.
g
= 0;
95
c1.sRgbColor.
g
= ScRgbTosRgb(c1.scRgbColor.g);
120
c1.sRgbColor.
g
= (byte)((argb & 0x0000ff00) >> 8);
155
c1.sRgbColor.
g
= ScRgbTosRgb(c1.scRgbColor.g);
178
c1.sRgbColor.
g
= ScRgbTosRgb(c1.scRgbColor.g);
363
sRgbColor.
g
= ScRgbTosRgb(scRgbColor.g);
441
c1.sRgbColor.
g
= 0;
445
c1.sRgbColor.
g
= 255;
449
c1.sRgbColor.
g
= (byte)((sRGBValue[1] * 255.0f) + 0.5f);
558
c1.sRgbColor.
g
= 0;
562
c1.sRgbColor.
g
= 255;
566
c1.sRgbColor.
g
= (byte)((sRGBValue[1] * 255.0f) + 0.5f);
844
sRgbColor.
g
= value;
947
sRgbColor.
g
= ScRgbTosRgb(value);
6 references to g
PresentationCore (6)
System\Windows\Media\Color.cs (6)
124
c1.scRgbColor.g = sRgbToScRgb(c1.sRgbColor.
g
);
272
return string.Create(provider, stackalloc char[128], $"#{this.sRgbColor.a:X2}{this.sRgbColor.r:X2}{this.sRgbColor.
g
:X2}{this.sRgbColor.b:X2}");
466
c1.scRgbColor.g = sRgbToScRgb(c1.sRgbColor.
g
);
583
c1.scRgbColor.g = sRgbToScRgb(c1.sRgbColor.
g
);
837
return sRgbColor.
g
;
1098
Span<float> sRGBValue = [this.sRgbColor.r / 255.0f, this.sRgbColor.
g
/ 255.0f, this.sRgbColor.b / 255.0f];