1 override of IsPropertyReadOnly
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\ImmutablePropertyDescriptorGridEntry.cs (1)
31internal override bool IsPropertyReadOnly => ShouldRenderReadOnly;
6 references to IsPropertyReadOnly
System.Windows.Forms (6)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (4)
126internal override bool Enumerable => base.Enumerable && !IsPropertyReadOnly; 130public override bool IsValueEditable => _exceptionConverter is null && !IsPropertyReadOnly && base.IsValueEditable; 132public override bool NeedsDropDownButton => base.NeedsDropDownButton && !IsPropertyReadOnly; 346if (!_hide && IsPropertyReadOnly)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.PropertyDescriptorGridEntryAccessibleObject.cs (1)
263=> (VARIANT)(this.TryGetOwnerAs(out PropertyDescriptorGridEntry? owner) && !owner.IsPropertyReadOnly),
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewTextBox.GridViewTextBoxAccessibleObject.cs (1)
109|| propertyDescriptorGridEntry.IsPropertyReadOnly;