Ejemplo n.º 1
0
        private void button3_Click(object sender, EventArgs e)
        {
            List <string> categories = new List <string>();

            for (int i = 0; i < this.possibleAnswerListBox.Items.Count; i++)
            {
                categories.Add((string)this.possibleAnswerListBox.Items[i]);
            }

            ResultGraph r = new ResultGraph(votes, categories, this.questionTextBox.Text);

            r.Show();
        }
Ejemplo n.º 2
0
        private void button3_Click(object sender, EventArgs e)
        {
            List<string> categories = new List<string>();
            for (int i = 0; i < this.possibleAnswerListBox.Items.Count; i++)
                categories.Add((string)this.possibleAnswerListBox.Items[i]);

            ResultGraph r = new ResultGraph(votes, categories,this.questionTextBox.Text);
            r.Show();
        }