Paint.PlaybackToolbox.CreateTools C# (CSharp) Method

CreateTools() private method

Creates all our tools.
private CreateTools ( ToolboxLayoutDefinition toolboxLayoutDefinition ) : void
toolboxLayoutDefinition Paint.ToolboxLayout.ToolboxLayoutDefinition
return void
        private void CreateTools(ToolboxLayoutDefinition toolboxLayoutDefinition)
        {
            this.playbackProgressBar = this.CreateProgressBar(toolboxLayoutDefinition.PlaybackTools.ProgressBar);
            this.AddTool(this.playbackProgressBar);

            this.speedGauge = this.CreateSpeedGauge(toolboxLayoutDefinition.PlaybackTools.SpeedGauge);
            this.AddTool(this.speedGauge);
        }