MainForm.OnPaint C# (CSharp) Method

OnPaint() protected method

protected OnPaint ( PaintEventArgs e ) : void
e PaintEventArgs
return void
	protected override void OnPaint (PaintEventArgs e)
	{
		e.Graphics.DrawImage (btmLunaticsInc,
			rect,
			Left - Width / 2 - (size * btmLunaticsInc.Width) / 2, Top - (size * btmLunaticsInc.Height) / 2, size * btmLunaticsInc.Width, size * btmLunaticsInc.Height,
			GraphicsUnit.Pixel);
	}
MainForm