14 references to LabelWidth
System.Windows.Forms (14)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
1985int labelWidth = gridHost.LabelWidth;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (13)
1107return length > _location.X + LabelWidth; 1425public int TotalWidth => LabelWidth + SplitterWidth + ValueWidth; 1433public int ValueWidth => (int)(LabelWidth * (_labelRatio - 1)); 1688if (x > LabelWidth + _location.X) 1926rect.Width = LabelWidth - 1; 1930rect.X = _location.X + LabelWidth; 1931rect.Width = size.Width - LabelWidth; 2132int oldLabelWidth = LabelWidth; 2147if (oldLabelWidth > LabelWidth) 2149int left = LabelWidth - _requiredLabelPaintMargin; 2784MoveSplitterTo(LabelWidth - 3); 2803MoveSplitterTo(LabelWidth + 3); 5080private bool SplitterInside(int x) => Math.Abs(x - LabelWidth) < 4;