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)
365UITypeEditor? editor = UITypeEditor; 553/// Returns true when the entry has an <see cref="UITypeEditor"/> that custom paints a value. 562UITypeEditor? editor = UITypeEditor; 1061if (UITypeEditor is null) 1069object? value = UITypeEditor.EditValue(this, this, originalValue); 1853UITypeEditor?.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)
3754SetFlag(Flags.ResizableDropDown, gridEntry.UITypeEditor?.IsDropDownResizable ?? false);