Paint.ToolBox.DrawTools C# (CSharp) Méthode

DrawTools() protected méthode

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

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