/// <summary>
 /// Constructeur de la classe.
 /// Crée des instances des vues FrmPersonnel, FrmAMPersonnel, FrmAbsences et FrmAMAbsences.
 /// </summary>
 public Controle()
 {
     frmPersonnel        = new FrmPersonnel(this);
     frmAMPersonnel      = new FrmAMPersonnel(this);
     frmAbsences         = new FrmAbsences(this);
     frmAMAbsences       = new FrmAMAbsences(this);
     frmAuthentification = new FrmAuthentification(this);
     frmAuthentification.ShowDialog();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Contructor which will create an instance of the authentification form
 /// </summary>
 public ControlMyApp()
 {
     FrmAuthentification = new FrmAuthentification(this);
     FrmAuthentification.ShowDialog();
 }
Exemplo n.º 3
0
 public Controle()
 {
     frmAuthentification = new FrmAuthentification(this);
     frmAuthentification.ShowDialog();
 }