Esempio n. 1
0
        private void StartVoteButton_Click(object sender, EventArgs e)
        {
            ArrayList aList = new ArrayList();

            for (int i = 0; i < this.CandidateListBox.Items.Count; i++)
            {
                aList.Add(this.CandidateListBox.Items[i]);
            }
            AddVoteSystem newSystem = new AddVoteSystem(aList, this);

            newSystem.Show();
        }