2 overrides of GetValueOwnerInternal
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
98internal override object? GetValueOwnerInternal() => ParentGridEntry?.GetValueOwnerInternal();
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
152internal override object? GetValueOwnerInternal()
3 references to GetValueOwnerInternal
System.Windows.Forms (3)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
98internal override object? GetValueOwnerInternal() => ParentGridEntry?.GetValueOwnerInternal();
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
1235public object? GetValueOwner() => _parent is null ? PropertyValue : _parent.GetValueOwnerInternal();
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
154? base.GetValueOwnerInternal()