예제 #1
0
        public override void OnStart(MainDisplay owner)
        {
            base.OnStart(owner);


            if (owner.TopPanelHidden)
            {
                owner.ShowTopPanel();
            }
        }
예제 #2
0
        public override void OnExit(MainDisplay owner)
        {
            if (hidBottomPanel)
            {
                owner.ShowBottomPanel();
                hidBottomPanel = false;
            }

            if (hidTopPanel)
            {
                owner.ShowTopPanel();
                hidTopPanel = false;
            }


            base.OnExit(owner);
        }