CSPspEmu.Gui.Winforms.PspDisplayForm.EnablePspDisplay C# (CSharp) Method

EnablePspDisplay() private method

private EnablePspDisplay ( bool Enable ) : void
Enable bool
return void
        private void EnablePspDisplay(bool Enable)
        {
            if (GLControl != null) this.GLControl.Visible = Enable;
            this.GameListComponent.Visible = !Enable;
            if (Enable)
            {
                if (GLControl != null) this.GLControl.Focus();
            }
            else
            {
                this.GameListComponent.Focus();
            }
        }
PspDisplayForm