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