9 overrides of GetPaintValueSupported
System.Windows.Forms (1)
System\Windows\Forms\ComponentModel\COM2Interop\COM2ExtendedUITypeEditor.cs (1)
32public override bool GetPaintValueSupported(ITypeDescriptorContext? context)
System.Windows.Forms.Design (8)
System\ComponentModel\Design\MultilineStringEditor.cs (1)
41public override bool GetPaintValueSupported(ITypeDescriptorContext? context) => false;
System\Drawing\Design\ColorEditor.cs (1)
44public override bool GetPaintValueSupported(ITypeDescriptorContext? context) => true;
System\Drawing\Design\FontNameEditor.cs (1)
27public override bool GetPaintValueSupported(ITypeDescriptorContext? context) => true;
System\Drawing\Design\IconEditor.cs (1)
105public override bool GetPaintValueSupported(ITypeDescriptorContext? context) => true;
System\Drawing\Design\ImageEditor.cs (1)
158public override bool GetPaintValueSupported(ITypeDescriptorContext? context) => true;
System\Windows\Forms\Design\ImageIndexEditor.cs (1)
109public override bool GetPaintValueSupported(ITypeDescriptorContext? context)
System\Windows\Forms\Design\MaskedTextBoxTextEditor.cs (1)
47public override bool GetPaintValueSupported(ITypeDescriptorContext? context)
System\Windows\Forms\Design\MaskPropertyEditor.cs (1)
77public override bool GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext? context)
23 references to GetPaintValueSupported
System.Windows.Forms (5)
System\Drawing\Design\UITypeEditor.cs (1)
104public 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)
417if (editor.GetPaintValueSupported(this)) 570if (editor.GetPaintValueSupported(this))
System.Windows.Forms.Design (3)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (1)
235HasSwatch = _editor.GetPaintValueSupported(TypeDescriptorContext);
System\Windows\Forms\Design\ImageIndexEditor.cs (1)
110=> ImageEditor?.GetPaintValueSupported(context) ?? false;
System\Windows\Forms\Design\MaskedTextBoxTextEditor.cs (1)
54return base.GetPaintValueSupported(context);
System.Windows.Forms.Design.Tests (12)
System\ComponentModel\Design\ArrayEditorTests.cs (1)
166Assert.False(editor.GetPaintValueSupported(context));
System\ComponentModel\Design\CollectionEditorTests.cs (1)
770Assert.False(editor.GetPaintValueSupported(context));
System\ComponentModel\Design\ObjectSelectorEditorTests.cs (1)
82Assert.False(editor.GetPaintValueSupported(context));
System\Drawing\Design\CursorEditorTests.cs (1)
73Assert.False(editor.GetPaintValueSupported(context));
System\Drawing\Design\FontEditorTests.cs (1)
39Assert.False(editor.GetPaintValueSupported(context));
System\Windows\Forms\Design\AnchorEditorTests.cs (1)
75Assert.False(editor.GetPaintValueSupported(context));
System\Windows\Forms\Design\BorderSidesEditorTests.cs (1)
73Assert.False(editor.GetPaintValueSupported(context));
System\Windows\Forms\Design\DockEditorTests.cs (1)
73Assert.False(editor.GetPaintValueSupported(context));
System\Windows\Forms\Design\FileNameEditorTests.cs (1)
40Assert.False(editor.GetPaintValueSupported(context));
System\Windows\Forms\Design\FolderNameEditorTests.cs (1)
32Assert.False(editor.GetPaintValueSupported(context));
System\Windows\Forms\Design\MaskPropertyEditorTests.cs (1)
44bool result = _editor.GetPaintValueSupported(null);
System\Windows\Forms\Design\ShortcutKeysEditorTests.cs (1)
73Assert.False(editor.GetPaintValueSupported(context));
System.Windows.Forms.Tests (3)
System\Drawing\Design\UITypeEditorTests.cs (3)
82Assert.False(editor.GetPaintValueSupported(context)); 91.Setup(e => e.GetPaintValueSupported(null)) 95mockEditor.Verify(e => e.GetPaintValueSupported(null), Times.Once());