1 override of UITypeEditor
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
283internal override UITypeEditor? UITypeEditor
9 references to UITypeEditor
System.Windows.Forms (9)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (6)
359UITypeEditor? editor = UITypeEditor; 547/// Returns true when the entry has an <see cref="UITypeEditor"/> that custom paints a value. 556UITypeEditor? editor = UITypeEditor; 1055if (UITypeEditor is null) 1063object? value = UITypeEditor.EditValue(this, this, originalValue); 1847UITypeEditor?.PaintValue(new PaintValueEventArgs(this, value, g, rectPaint));
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.Flags.cs (1)
22/// The current <see cref="UITypeEditor"/> returned true for <see cref="UITypeEditor.GetPaintValueSupported()"/>.
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
294return base.UITypeEditor;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
3755SetFlag(Flags.ResizableDropDown, gridEntry.UITypeEditor?.IsDropDownResizable ?? false);