1 write to LineColor
System.Web.Mobile (1)
UI\MobileControls\Design\PropertyOverridesDialog.cs (1)
167this._pgProperties.LineColor = System.Drawing.SystemColors.ScrollBar;
8 references to LineColor
System.Windows.Forms (8)
winforms\Managed\System\WinForms\PropertyGridInternal\CategoryGridEntry.cs (1)
219ControlPaint.DrawFocusRectangle(g, focusRect, SystemColors.ControlText, OwnerGrid.LineColor);
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (3)
1931Color textColor = selected && hasFocus ? gridHost.GetSelectedItemWithFocusForeColor() : shouldInvertForHC ? InvertColor(ownerGrid.LineColor) : g.GetNearestColor(this.LabelTextColor); 2018Color textColor = InvertColor(ownerGrid.LineColor); 2048penColor = InvertColor(ownerGrid.LineColor);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (4)
1512return ownerGrid.LineColor; 1517Color clr = g.GetNearestColor(ownerGrid.LineColor); 3506Pen splitterPen = new Pen(ownerGrid.LineColor, GetSplitterWidth()); 3513Pen linePen = new Pen(g.GetNearestColor(ownerGrid.LineColor));