4 writes to B
PresentationFramework.Classic (1)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (1)
446darkDarkColor.B = (byte)((darkColor.B + SystemColors.WindowFrameColor.B) / 2);
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\PropertyInspectorFontAndColorDictionary.cs (3)
30color.B = drawingBrush.Color.B; 41startingColor.B = drawingBrush.LinearColors[0].B; 46endingColor.B = drawingBrush.LinearColors[1].B;
20 references to B
PresentationCore (5)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (1)
533uint r = (uint)daColor.R, g = (uint)daColor.G, b = (uint)(daColor.B);
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (1)
1781color.B
Core\CSharp\System\Windows\Media\ColorConverter.cs (1)
123return new InstanceDescriptor(mi, new object[]{c.A, c.R, c.G, c.B});
Core\CSharp\System\Windows\Media\Effects\ShaderEffect.cs (1)
922newVal.b = (float)col.B / 255f;
Core\CSharp\System\Windows\Media\Imaging\BitmapPalette.cs (1)
328paletteColorArray[i].B = color.B;
PresentationFramework (12)
src\Framework\System\Windows\Annotations\AnnotationHelper.cs (1)
962color = Color.FromArgb(alpha, brush.Color.R, brush.Color.G, brush.Color.B);
src\Framework\System\Windows\Controls\TextRangeAdaptor.cs (1)
1270return (0 + (color.R << 16) + (color.G << 8) + color.B);
src\Framework\System\Windows\Documents\RtfToXamlReader.cs (8)
422(byte)(cCF.B + ((255 - cCF.B) * (10000 - shade) / 10000))); 432(byte)(cCB.B - (cCB.B * shade / 10000))); 444(byte)((cCB.B * (10000 - shade) / 10000) + 445(cCF.B * shade / 10000))); 3914_color = Color.FromArgb(0xff, value, _color.G, _color.B); 3922_color = Color.FromArgb(0xff, _color.R, value, _color.B);
src\Framework\System\windows\Documents\TextSelection.cs (1)
1664byte b = (byte)~(backgroundColor.B);
src\Framework\System\Windows\Documents\XamlToRtfWriter.cs (1)
566_rtfBuilder.Append(color.B.ToString(CultureInfo.InvariantCulture));
PresentationFramework.Classic (3)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (3)
187: this(color.A, color.R / 255.0f, color.G / 255.0f, color.B / 255.0f) 446darkDarkColor.B = (byte)((darkColor.B + SystemColors.WindowFrameColor.B) / 2);