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

示例#1
0
文件: Control.cs 项目: nlhepler/mono
		protected void InvokePaintBackground(Control c, PaintEventArgs e) {
			c.OnPaintBackground (e);
		}
Control