예제 #1
0
 public DragDrop(Principal principal)
 {
     InitializeComponent();
     p          = principal;
     quiz       = new frmQuiz(p, this);
     this.email = p.getEmail();
 }
예제 #2
0
 public Principal()
 {
     InitializeComponent();
     drag = new DragDrop(this);
     quiz = new frmQuiz(this, drag);
 }