System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (14)
478Rectangle rect = GetRectangle(_selectedRow, RowLabel);
622Rectangle rect = GetRectangle(row, RowValue | RowLabel);
1287if (type == RowLabel && toggleExpand && gridEntry.Expandable)
1392Rectangle r = GetRectangle(row, rowValue ? RowValue : RowLabel);
1687Point pt = new(RowLabel, 0);
1915bool fLabel = (flRow & RowLabel) != 0;
2023private void InvalidateRow(int row) => InvalidateRows(row, row, RowValue | RowLabel);
2025private void InvalidateRows(int startRow, int endRow) => InvalidateRows(startRow, endRow, RowValue | RowLabel);
3025Rectangle r = GetRectangle(pos.Y, RowLabel);
3069if (point == InvalidPosition || (point.X != RowLabel && point.X != RowValue))
3077onLabel = point.X == RowLabel;
3377Rectangle rect = GetRectangle(i, RowLabel);
3429DoubleClickRow(row, gridEntry.Expandable, RowLabel);
5311if (mouseLoc.X == RowLabel)