Example #1
0
        private void DepthChanged()
        {
            bool isTop    = currentStage.IsTop();
            bool isBottom = currentStage.IsBottom();

            toTopToolStripMenuItem.Enabled    = !isTop;
            toBottomToolStripMenuItem.Enabled = !isBottom;
            upOneToolStripMenuItem.Enabled    = !isTop;
            backOneToolStripMenuItem.Enabled  = !isBottom;
        }