System.Windows.Forms.Control.OnPaintBackground C# (CSharp) Method

OnPaintBackground() private method

private OnPaintBackground ( PaintEventArgs pevent ) : void
pevent PaintEventArgs
return void
		protected virtual void OnPaintBackground(PaintEventArgs pevent) {
			PaintControlBackground (pevent);
		}

Usage Example

Example #1
0
		protected void InvokePaintBackground(Control c, PaintEventArgs e) {
			c.OnPaintBackground (e);
		}
Control