9 overrides of GetPaintValueSupported
System.Windows.Forms (1)
System\Windows\Forms\ComponentModel\COM2Interop\COM2ExtendedUITypeEditor.cs (1)
32
public override bool
GetPaintValueSupported
(ITypeDescriptorContext? context)
System.Windows.Forms.Design (8)
System\ComponentModel\Design\MultilineStringEditor.cs (1)
41
public override bool
GetPaintValueSupported
(ITypeDescriptorContext? context) => false;
System\Drawing\Design\ColorEditor.cs (1)
44
public override bool
GetPaintValueSupported
(ITypeDescriptorContext? context) => true;
System\Drawing\Design\FontNameEditor.cs (1)
27
public override bool
GetPaintValueSupported
(ITypeDescriptorContext? context) => true;
System\Drawing\Design\IconEditor.cs (1)
105
public override bool
GetPaintValueSupported
(ITypeDescriptorContext? context) => true;
System\Drawing\Design\ImageEditor.cs (1)
158
public override bool
GetPaintValueSupported
(ITypeDescriptorContext? context) => true;
System\Windows\Forms\Design\ImageIndexEditor.cs (1)
109
public override bool
GetPaintValueSupported
(ITypeDescriptorContext? context)
System\Windows\Forms\Design\MaskedTextBoxTextEditor.cs (1)
47
public override bool
GetPaintValueSupported
(ITypeDescriptorContext? context)
System\Windows\Forms\Design\MaskPropertyEditor.cs (1)
77
public override bool
GetPaintValueSupported
(System.ComponentModel.ITypeDescriptorContext? context)
8 references to GetPaintValueSupported
System.Windows.Forms (5)
System\Drawing\Design\UITypeEditor.cs (1)
104
public bool GetPaintValueSupported() =>
GetPaintValueSupported
(null);
System\Windows\Forms\ComponentModel\COM2Interop\COM2ExtendedUITypeEditor.cs (2)
34
? _innerEditor.
GetPaintValueSupported
(context)
35
: base.
GetPaintValueSupported
(context);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (2)
408
if (editor.
GetPaintValueSupported
(this))
561
if (editor.
GetPaintValueSupported
(this))
System.Windows.Forms.Design (3)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (1)
232
HasSwatch = _editor.
GetPaintValueSupported
(TypeDescriptorContext);
System\Windows\Forms\Design\ImageIndexEditor.cs (1)
110
=> ImageEditor?.
GetPaintValueSupported
(context) ?? false;
System\Windows\Forms\Design\MaskedTextBoxTextEditor.cs (1)
54
return base.
GetPaintValueSupported
(context);