Beispiel #1
0
        public void Klik(object o, EventArgs ea)
        {
            Button B = (Button)o;
            string a = B.Text;

            foreach (String s in answers)
            {
                if (a == s.Substring(1, s.Length - 1))
                {
                    Userinfo.Opslaan(q.getQuestion, a);
                    GameBase.nextquestion(s.Substring(0, 1));
                }
            }
        }
Beispiel #2
0
 public void klik(object o, EventArgs ea)
 {
     GameBase.nextquestion(nummer);
 }
Beispiel #3
0
 public void klikback(object o, EventArgs ea)
 {
     GameBase.endgame();
 }
Beispiel #4
0
 public void klikready(object o, EventArgs ea)
 {
     GameBase.startInfoPage();
 }
Beispiel #5
0
 public void klikprevious(object o, EventArgs ea)
 {
     GameBase.previousText();
 }
Beispiel #6
0
 public void kliknext(object o, EventArgs ea)
 {
     GameBase.nextText();
 }
Beispiel #7
0
 public void Confirm(object o, EventArgs ea)
 {
     Userinfo.Checkopslaan(check);
     GameBase.nextquestion((int.Parse(nummer) + 1).ToString());
 }
Beispiel #8
0
        public void kliknext(object o, EventArgs ea)
        {
            bool error = false;
            int  loc   = 0;

            for (int p = 0; p < q.getAnswer.Count; p++)
            {
                String s = "";
                for (int l = 0; l < 5; l++)
                {
                    if (buttons[(p * 5) + l].Checked == true)
                    {
                        s = s + "1";
                    }
                    else
                    {
                        s = s + "0";
                    }
                }
                Char[] b   = s.ToCharArray();
                int    tel = 0;
                for (int v = 0; v < b.Length; v++)
                {
                    if (b[v] == '1')
                    {
                        tel = tel + 1;
                    }
                }
                if (tel == 0)
                {
                    error = true;
                    loc   = p;
                }
            }
            if (error == true)
            {
            }
            else
            {
                String answ = "";
                for (int it = 0; it < buttons.Count; it++)
                {
                    if (buttons[it].Checked == true)
                    {
                        answ = answ + "1";
                    }
                    else
                    {
                        answ = answ + "0";
                    }
                }
                List <String> results = new List <string>();
                Char[]        ans     = answ.ToCharArray();
                int           hoe     = 0;
                for (int a = 0; a < answers.Count; a++)
                {
                    int bt = a * 5;
                    int et = ((a + 1) * 5);
                    for (int d = bt; d < et; d++)
                    {
                        if (ans[d] == '1')
                        {
                            hoe = d;
                        }
                    }
                    int po = 0;
                    po  = hoe / 5;
                    hoe = hoe - (po * 5);
                    results.Add(hoe + "|" + answers[a].Substring(1, (answers[a].Length - 1)));
                }
                Userinfo.agreeopslaan(results);
                GameBase.nextquestion((int.Parse(nummer) + 1).ToString());
            }
        }
Beispiel #9
0
 public void startgame(object o, EventArgs ea)
 {
     GameBase.startgame(false);
 }
Beispiel #10
0
 public void startinfo(object o, EventArgs ea)
 {
     GameBase.startgame(true);
 }