Paint.ToolBox.DrawTools C# (CSharp) Method

DrawTools() protected method

Draws the tools.
protected DrawTools ( bool refreshDisplay ) : void
refreshDisplay bool /// True = we should redraw the entire control /// False = just draw any updates ///
return void
        protected void DrawTools(bool refreshDisplay)
        {
            foreach (var tool in this.interactiveTools)
            {
                tool.Draw(refreshDisplay);
            }

            foreach (var tool in this.nonInteractiveTools)
            {
                tool.Draw(refreshDisplay);
            }
        }