2 writes to ParentGridEntry
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\CategoryGridEntry.cs (1)
57childGridEntries[i].ParentGridEntry = this;
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
859childCollection.GetEntry(i).ParentGridEntry = this;
21 references to ParentGridEntry
System.Windows.Forms (21)
winforms\Managed\System\WinForms\PropertyGridInternal\ArrayElementGridEntry.cs (2)
44return ParentGridEntry.IsValueEditable; 77return ParentGridEntry.ShouldRenderReadOnly;
winforms\Managed\System\WinForms\PropertyGridInternal\CategoryGridEntry.cs (1)
191return ParentGridEntry.GetChildValueOwner(childEntry);
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (4)
872GridItem parent = this.ParentGridEntry; 1353return((GridEntry)obj).ParentGridEntry == this.ParentGridEntry; 2786var parentGridEntry = owner.ParentGridEntry;
winforms\Managed\System\WinForms\PropertyGridInternal\ImmutablePropertyDescriptorGridEntry.cs (3)
90return ParentGridEntry.NotifyValue(type); 101GridEntry parent = this.ParentGridEntry; 104parent = parent.ParentGridEntry;
winforms\Managed\System\WinForms\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
194ge = ge.ParentGridEntry;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (6)
121while (ge.ParentGridEntry != null) { 123ge = ge.ParentGridEntry; 491ge = ge.ParentGridEntry; 836if (ParentGridEntry != null) { 837Type propType = ParentGridEntry.PropertyType; 853GridEntry parent = this.ParentGridEntry;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (4)
2059gridEntry = gridEntry.ParentGridEntry; 4626for (GridEntry ipeCur = ipeSelect; ipeCur != null; ipeCur = ipeCur.ParentGridEntry) { 5155temp = temp.ParentGridEntry; 5171UpdateHelpAttributes(helpSvc, entry.ParentGridEntry, false);