LayoutFarm.TopWindowRenderBox.DrawBoxContent C# (CSharp) Method

DrawBoxContent() protected method

protected DrawBoxContent ( Canvas canvas, Rectangle updateArea ) : void
canvas PixelFarm.Drawing.Canvas
updateArea PixelFarm.Drawing.Rectangle
return void
        protected override void DrawBoxContent(Canvas canvas, Rectangle updateArea)
        {
            canvas.FillRectangle(Color.White, 0, 0, this.Width, this.Height);
            this.DrawDefaultLayer(canvas, ref updateArea);
        }
    }