Beispiel #1
0
        public static DialogResult Afficher(string strMess)
        {
            CFormAlerte frm = new CFormAlerte(strMess);

            return(frm.ShowDialog());
        }
Beispiel #2
0
        public static DialogResult Afficher(List <IErreur> erreurs, EFormAlerteBoutons boutons, Bitmap icone)
        {
            CFormAlerte frm = new CFormAlerte(erreurs, boutons, icone);

            return(frm.ShowDialog());
        }
Beispiel #3
0
        public static DialogResult Afficher(List <IErreur> erreurs, EModeAffichageErreurs mode)
        {
            CFormAlerte frm = new CFormAlerte(erreurs, mode);

            return(frm.ShowDialog());
        }
Beispiel #4
0
        public static DialogResult Afficher(List <IErreur> erreurs)
        {
            CFormAlerte frm = new CFormAlerte(erreurs);

            return(frm.ShowDialog());
        }
Beispiel #5
0
        public static DialogResult Afficher(IErreur[] erreurs, EFormAlerteBoutons boutons, EFormAlerteType icone)
        {
            CFormAlerte frm = new CFormAlerte(erreurs, boutons, icone);

            return(frm.ShowDialog());
        }
Beispiel #6
0
        public static DialogResult Afficher(string strMess, EFormAlerteBoutons boutons, Bitmap icone)
        {
            CFormAlerte frm = new CFormAlerte(strMess, boutons, icone);

            return(frm.ShowDialog());
        }