6 overrides of PaintValue
System.Windows.Forms (1)
System\Windows\Forms\ComponentModel\COM2Interop\COM2ExtendedUITypeEditor.cs (1)
42
public override void
PaintValue
(PaintValueEventArgs e)
System.Windows.Forms.Design (5)
System\Drawing\Design\ColorEditor.cs (1)
47
public override void
PaintValue
(PaintValueEventArgs e)
System\Drawing\Design\FontNameEditor.cs (1)
30
public override void
PaintValue
(PaintValueEventArgs e)
System\Drawing\Design\IconEditor.cs (1)
110
public override void
PaintValue
(PaintValueEventArgs e)
System\Drawing\Design\ImageEditor.cs (1)
172
public override void
PaintValue
(PaintValueEventArgs e)
System\Windows\Forms\Design\ImageIndexEditor.cs (1)
113
public override void
PaintValue
(PaintValueEventArgs e)
10 references to PaintValue
System.Windows.Forms (5)
System\Drawing\Design\PaintValueEventArgs.cs (1)
9
/// Object passed as an argument to <see cref="UITypeEditor.
PaintValue
(PaintValueEventArgs)"/> containing
System\Drawing\Design\UITypeEditor.cs (1)
129
=>
PaintValue
(new PaintValueEventArgs(null, value, canvas, rectangle));
System\Windows\Forms\ComponentModel\COM2Interop\COM2ExtendedUITypeEditor.cs (2)
44
_innerEditor?.
PaintValue
(e);
45
base.
PaintValue
(e);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
1853
UITypeEditor?.
PaintValue
(new PaintValueEventArgs(this, value, g, rectPaint));
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ImageIndexEditor.cs (1)
133
ImageEditor.
PaintValue
(new PaintValueEventArgs(e.Context, image, e.Graphics, e.Bounds));
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\ImageIndexEditorTests.cs (1)
39
Action action = () => _editor.
PaintValue
(paintValueEventArgs);
System.Windows.Forms.Tests (3)
System\Drawing\Design\UITypeEditorTests.cs (3)
113
editor.
PaintValue
(e);
130
.Setup(e => e.
PaintValue
(It.IsAny<PaintValueEventArgs>()))
138
mockEditor.Verify(e => e.
PaintValue
(It.IsAny<PaintValueEventArgs>()), Times.Once());