3 writes to LineColor
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\DataGridViewCellStyleBuilder.cs (1)
143_cellStyleProperties.LineColor = Drawing.SystemColors.ScrollBar;
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
575_propertyGrid1.LineColor = SystemColors.ScrollBar;
System\Windows\Forms\Design\TreeNodeCollectionEditor.cs (1)
284_propertyGrid1.LineColor = SystemColors.ScrollBar;
9 references to LineColor
System.Windows.Forms (9)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
125ControlPaint.DrawFocusRectangle(g, focusRect, SystemColors.ControlText, OwnerGrid.LineColor);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (5)
1585? InvertColor(OwnerGrid.LineColor) 1669Color textColor = InvertColor(OwnerGrid.LineColor); 1701Color backgroundColor = ColorInversionNeededInHighContrast ? InvertColor(OwnerGrid.LineColor) : OwnerGrid.LineColor; 1736penColor = InvertColor(OwnerGrid.LineColor);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (3)
1329public Color LineColor => OwnerGrid.LineColor; 3339using var splitterPen = OwnerGrid.LineColor.GetCachedPenScope(SplitterWidth); 3343using var linePen = g.FindNearestColor(OwnerGrid.LineColor).GetCachedPenScope();