/// <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(); }
/// <summary> /// Contructor which will create an instance of the authentification form /// </summary> public ControlMyApp() { FrmAuthentification = new FrmAuthentification(this); FrmAuthentification.ShowDialog(); }
public Controle() { frmAuthentification = new FrmAuthentification(this); frmAuthentification.ShowDialog(); }