6 instantiations of DrawingEventArgs
System.Windows.Forms (6)
System\Windows\Forms\Rendering\DrawItemEventArgs.cs (2)
48_event = new DrawingEventArgs(graphics, rect, DrawingEventFlags.GraphicsStateUnclean); 74_event = new DrawingEventArgs(hdc, rect, DrawingEventFlags.CheckState);
System\Windows\Forms\Rendering\PaintEventArgs.cs (4)
51? new DrawingEventArgs(e.GraphicsInternal, clipRect, e._event.Flags) 52: new DrawingEventArgs(hdc, clipRect, e._event.Flags); 60_event = new DrawingEventArgs(graphics, clipRect, flags); 72_event = new DrawingEventArgs(hdc, clipRect, flags);
3 references to DrawingEventArgs
System.Windows.Forms (3)
System\Windows\Forms\Rendering\DrawingEventArgs.cs (1)
9/// Struct that helps ensure we build our <see cref="EventArgs"/> that wrap <see cref="DrawingEventArgs"/>
System\Windows\Forms\Rendering\DrawItemEventArgs.cs (1)
16private readonly DrawingEventArgs _event;
System\Windows\Forms\Rendering\PaintEventArgs.cs (1)
20private readonly DrawingEventArgs _event;