public UserControl_Exam_Result(UserControl_Exam userControl_Exam, System.Collections.Generic.List <UserControl_Exam_Do.yourTest> result)
        {
            InitializeComponent();

            this.father = userControl_Exam;
            this.result = result;
            this.button = new Button[this.result.Count];

            for (int i = 0; i < this.result.Count; i++)
            {
                Init(button[i], i, this.result[i]);
            }
        }
Esempio n. 2
0
 public UserControl_Exam_Choice(UserControl_Exam userControl_Exam)
 {
     InitializeComponent();
     father = userControl_Exam;
 }