ME3Explorer.KFreonTPFTools3.FirstHalfInfoState C# (CSharp) Method

FirstHalfInfoState() private method

private FirstHalfInfoState ( bool state ) : void
state bool
return void
        private void FirstHalfInfoState(bool state)
        {
            if (MainTreeView.InvokeRequired)
                FirstHalfInfoState(state);
            else
            {
                TPFFormatLabel.Visible = state;
                TPFFormatEntry.Visible = state;
                TPFMipsEntry.Visible = state;
                TPFMipsLabel.Visible = state;
                HashLabel.Visible = state;
                HashTextBox.Visible = state;
                ImageSizeEntry.Visible = state;
                ImageSizeLabel.Visible = state;
            }
        }
KFreonTPFTools3