Пример #1
0
        public static DialogResult Afficher(string strMess, EFormAlerteBoutons boutons, EFormAlerteType icone, int nSecondesMaxAffichage, Form owner)
        {
            CFormAlerte frm = new CFormAlerte(strMess, boutons, icone, nSecondesMaxAffichage);

            //frm.Owner = owner;
            return(frm.ShowDialog(owner));
        }
Пример #2
0
        public static DialogResult Afficher(string strMess)
        {
            CFormAlerte frm = new CFormAlerte(strMess);

            return(frm.ShowDialog());
        }
Пример #3
0
        public static DialogResult Afficher(List <IErreur> erreurs, EFormAlerteBoutons boutons, Bitmap icone)
        {
            CFormAlerte frm = new CFormAlerte(erreurs, boutons, icone);

            return(frm.ShowDialog());
        }
Пример #4
0
        public static DialogResult Afficher(List <IErreur> erreurs, EModeAffichageErreurs mode)
        {
            CFormAlerte frm = new CFormAlerte(erreurs, mode);

            return(frm.ShowDialog());
        }
Пример #5
0
        public static DialogResult Afficher(List <IErreur> erreurs)
        {
            CFormAlerte frm = new CFormAlerte(erreurs);

            return(frm.ShowDialog());
        }
Пример #6
0
        public static DialogResult Afficher(IErreur[] erreurs, EFormAlerteBoutons boutons, EFormAlerteType icone)
        {
            CFormAlerte frm = new CFormAlerte(erreurs, boutons, icone);

            return(frm.ShowDialog());
        }
Пример #7
0
        public static DialogResult Afficher(string strMess, EFormAlerteBoutons boutons, Bitmap icone)
        {
            CFormAlerte frm = new CFormAlerte(strMess, boutons, icone);

            return(frm.ShowDialog());
        }