14 references to LabelWidth
System.Windows.Forms (14)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
1994
int labelWidth = gridHost.
LabelWidth
;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (13)
1084
return length > _location.X +
LabelWidth
;
1396
public int TotalWidth =>
LabelWidth
+ SplitterWidth + ValueWidth;
1404
public int ValueWidth => (int)(
LabelWidth
* (_labelRatio - 1));
1659
if (x >
LabelWidth
+ _location.X)
1897
rect.Width =
LabelWidth
- 1;
1901
rect.X = _location.X +
LabelWidth
;
1902
rect.Width = size.Width -
LabelWidth
;
2103
int oldLabelWidth =
LabelWidth
;
2118
if (oldLabelWidth >
LabelWidth
)
2120
int left =
LabelWidth
- _requiredLabelPaintMargin;
2740
MoveSplitterTo(
LabelWidth
- 3);
2759
MoveSplitterTo(
LabelWidth
+ 3);
5036
private bool SplitterInside(int x) => Math.Abs(x -
LabelWidth
) < 4;