Exemplo n.º 1
0
        //
        // Group Box Decide Action
        //
        private void BtnFight_Click(object sender, EventArgs e)
        {
            GbxDecideAction.Hide();

            //Show new groupbox and move it to its place
            GbxFight.Visible  = true;
            GbxFight.Location = new Point(95, 60);

            LblText.Font = new Font("Microsoft Sans Serif", 50);
            LblText.Text = "What Combat Technique Were You Thinking Of Using?";
        }
Exemplo n.º 2
0
        private void BtnCharacter_Click(object sender, EventArgs e)
        {
            GbxDecideAction.Hide();

            //Show new groupbox and move it to its place
            GbxSpec.Visible  = true;
            GbxSpec.Location = new Point(95, 60);

            //Show character's and enemey's name, health, etc
            LblCharacterSpec.Text = Player.CharacterSpec();
            LblRobomoonSpec.Text  = Enemey.CharacterSpec();

            LblText.Font = new Font("Microsoft Sans Serif", 50);
            LblText.Text = "Here Is Your And His Specs";
        }