Paint.PlaybackToolbox.CreateTools C# (CSharp) Méthode

CreateTools() private méthode

Creates all our tools.
private CreateTools ( ToolboxLayoutDefinition toolboxLayoutDefinition ) : void
toolboxLayoutDefinition Paint.ToolboxLayout.ToolboxLayoutDefinition
Résultat 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);
        }