ME3Explorer.KFreonTPFTools3.EnableSecondProgressBar C# (CSharp) Method

EnableSecondProgressBar() private method

private EnableSecondProgressBar ( bool state ) : void
state bool
return void
        private void EnableSecondProgressBar(bool state)
        {
            if (BottomStrip.InvokeRequired)
                this.Invoke(new Action(() => EnableSecondProgressBar(state)));
            else
            {
                CurrentProgressBar.Visible = state;
                CurrentStatusLabel.Visible = state;
                OverallLabel.Visible = state;
                toolStripSeparator2.Visible = state;
                toolStripSeparator3.Visible = state;
                CurrentLabel.Visible = state;
            }
        }
KFreonTPFTools3