Paint.PlaybackToolbox.CreateTools C# (CSharp) Метод

CreateTools() приватный Метод

Creates all our tools.
private CreateTools ( ToolboxLayoutDefinition toolboxLayoutDefinition ) : void
toolboxLayoutDefinition Paint.ToolboxLayout.ToolboxLayoutDefinition
Результат 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);
        }