Ejemplo n.º 1
0
        public static InstructionsGUI GetInstance()
        {
            if (_instanceInstructionsGUI == null)
            {
                _instanceInstructionsGUI = new InstructionsGUI();
            }

            return(_instanceInstructionsGUI);
        }
Ejemplo n.º 2
0
        protected override void Dispose(bool disposing)
        {
            //if (disposing && (components != null))
            //{
            //    InstructionsGUI.GetInstance().Hide();
            //}

            base.Dispose(disposing);
            _instanceInstructionsGUI = null;
        }
Ejemplo n.º 3
0
 private void instructionsItem_Click(object sender, System.EventArgs e)
 {
     InstructionsGUI.GetInstance().Show();
 }