KinEmote.StreamView.OnPaintBackground C# (CSharp) Метод

OnPaintBackground() защищенный Метод

protected OnPaintBackground ( PaintEventArgs e ) : void
e PaintEventArgs
Результат void
        protected override void OnPaintBackground(PaintEventArgs e)
        {
            lock (this)
            {
                e.Graphics.DrawImage(this.bitmap,
                    0,
                    0,
                    this.Size.Width,
                    this.Size.Height);
            }
        }