2 overrides of ShouldRenderReadOnly
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\ArrayElementGridEntry.cs (1)
75public override bool ShouldRenderReadOnly {
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
348public override bool ShouldRenderReadOnly
9 references to ShouldRenderReadOnly
System.Windows.Forms (9)
winforms\Managed\System\WinForms\PropertyGridInternal\ArrayElementGridEntry.cs (1)
77return ParentGridEntry.ShouldRenderReadOnly;
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (4)
235if (this.ShouldRenderReadOnly) { 1505str += "), property = (" + this.PropertyLabel + "," + type.AssemblyQualifiedName + "), value = " + "[" + textVal + "], expandable = " + this.Expandable.ToString() + ", readOnly = " + ShouldRenderReadOnly;; 2094if (this.ShouldRenderReadOnly) { 3012if (owner.ShouldRenderReadOnly) {
winforms\Managed\System\WinForms\PropertyGridInternal\ImmutablePropertyDescriptorGridEntry.cs (1)
95return InstanceParentGridEntry.ShouldRenderReadOnly;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
368if (base.ShouldRenderReadOnly){
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
4424if ((fBtnDialog || fBtnDropDown) && !gridEntry.ShouldRenderReadOnly && FocusInside) { 4486bool drawReadOnly = gridEntry.ShouldRenderReadOnly;