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)
356UITypeEditor? editor = UITypeEditor; 544/// Returns true when the entry has an <see cref="UITypeEditor"/> that custom paints a value. 553UITypeEditor? editor = UITypeEditor; 1052if (UITypeEditor is null) 1060object? value = UITypeEditor.EditValue(this, this, originalValue); 1844UITypeEditor?.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)
3794SetFlag(Flags.ResizableDropDown, gridEntry.UITypeEditor?.IsDropDownResizable ?? false);