4 overrides of PropertyLabel
System.Windows.Forms (4)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\ArrayElementGridEntry.cs (1)
21public override string PropertyLabel => $"[{_index}]";
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
79public override string PropertyLabel => _name;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
165public override string? PropertyLabel
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (1)
162public override string? PropertyLabel
17 references to PropertyLabel
System.Windows.Forms (17)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (13)
505label = $"{label}.{PropertyLabel}"; 509label = PropertyLabel; 612public override string? Label => PropertyLabel; 630internal virtual string? LabelToolTipText => PropertyLabel; 740public virtual string? PropertyName => PropertyLabel; 1131&& entry.PropertyLabel is not null 1132&& entry.PropertyLabel.Equals(PropertyLabel) 1251=> $@"object = ({FullLabel}), property = ({PropertyLabel},{(PropertyType ?? typeof(object)).AssemblyQualifiedName}) 1380Debug.Assert(!s_pbrsAssertPropsSwitch.Enabled, $"Bad property '{PropertyLabel}.{property.Name}': {w}"); 1476public override int GetHashCode() => HashCode.Combine(PropertyLabel, PropertyType, GetType()); 1522string? label = PropertyLabel; 2267public override string ToString() => $"{GetType().FullName} {PropertyLabel}";
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.GridEntryAccessibleObject.cs (1)
68public override string? Name => this.TryGetOwnerAs(out GridEntry? owner) ? owner.PropertyLabel : null;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (3)
1071SizeF sizeF = PropertyGrid.MeasureTextHelper.MeasureText(OwnerGrid, g, gridEntry.PropertyLabel, Font); 1348if (!string.Equals(propertyName, entry.PropertyLabel, StringComparison.InvariantCultureIgnoreCase)) 4385OwnerGrid.SetStatusBox(gridEntry.PropertyLabel, gridEntry.PropertyDescription);