4 writes to R
PresentationFramework.Classic (1)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (1)
444darkDarkColor.R = (byte)((darkColor.R + SystemColors.WindowFrameColor.R) / 2);
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\PropertyInspectorFontAndColorDictionary.cs (3)
28color.R = drawingBrush.Color.R; 39startingColor.R = drawingBrush.LinearColors[0].R; 44endingColor.R = drawingBrush.LinearColors[1].R;
20 references to R
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)
1779color.R,
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)
920newVal.r = (float)col.R / 255f;
Core\CSharp\System\Windows\Media\Imaging\BitmapPalette.cs (1)
330paletteColorArray[i].R = color.R;
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)
420(byte)(cCF.R + ((255 - cCF.R) * (10000 - shade) / 10000)), 430(byte)(cCB.R - (cCB.R * shade / 10000)), 440(byte)((cCB.R * (10000 - shade) / 10000) + 441(cCF.R * shade / 10000)), 3922_color = Color.FromArgb(0xff, _color.R, value, _color.B); 3930_color = Color.FromArgb(0xff, _color.R, _color.G, value);
src\Framework\System\windows\Documents\TextSelection.cs (1)
1662byte r = (byte)~(backgroundColor.R);
src\Framework\System\Windows\Documents\XamlToRtfWriter.cs (1)
562_rtfBuilder.Append(color.R.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) 444darkDarkColor.R = (byte)((darkColor.R + SystemColors.WindowFrameColor.R) / 2);