Ejemplo n.º 1
0
 public CreateQuizF(GreetingF greeting)
 {
     InitializeComponent();
     _controller = new CreateQuizController(this, greeting);
     _previousF  = greeting;
 }
Ejemplo n.º 2
0
 public GreetingF()
 {
     InitializeComponent();
     _controller = new GreetingController(this);
     s_mainForm  = this;
 }
Ejemplo n.º 3
0
 private void Results_FormClosed(object sender, FormClosedEventArgs e) => GreetingF.GetForm().Show();
Ejemplo n.º 4
0
 public PassQuizF(GreetingF greeting, string quizPath)
 {
     InitializeComponent();
     _controller = new PassQuizController(this, quizPath);
     _greeting   = greeting;
 }