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

DrawTools() 보호된 메소드

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

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