Paint.ToolBox.DrawBackground C# (CSharp) 메소드

DrawBackground() 보호된 메소드

Draws the background (and border)
protected DrawBackground ( ) : void
리턴 void
        protected virtual void DrawBackground()
        {
            // First fill the entire region with the border colour...
            this.GraphicsDisplay.DrawGraphic(ImageType.EmptySquare, this.toolboxBounds, this.BorderColor);

            // Then blank out the space for the toolbar...
            this.GraphicsDisplay.DrawGraphic(ImageType.EmptySquare, this.toolbarInnerBounds, this.BackgroundColor);

            // Classes inheriting from us may override this and do more
        }