Ejemplo n.º 1
0
        public void showAlert(string msg, enmType enmType)
        {
            this.Opacity       = 0.0;
            this.StartPosition = FormStartPosition.Manual;
            string fname;

            for (int i = 0; i < 10; ++i)
            {
                fname = "alert " + i.ToString();
                AlertForm frm = (AlertForm)Application.OpenForms[fname];

                if (frm == null)
                {
                    this.Name     = fname;
                    this.x        = Screen.PrimaryScreen.WorkingArea.Width - this.Width + 15;
                    this.y        = Screen.PrimaryScreen.WorkingArea.Height - this.Height * (i + 1);
                    this.Location = new Point(this.x, this.y);
                    break;
                }
            }
            this.x = Screen.PrimaryScreen.WorkingArea.Width - base.Width - 5;

            switch (enmType)
            {
            case enmType.Success:
                this.pictureBox1.Image = Properties.Resources.success;
                this.BackColor         = Color.SeaGreen;
                break;

            case enmType.Error:
                this.pictureBox1.Image = Properties.Resources.warning;
                this.BackColor         = Color.DarkRed;
                break;

            case enmType.Info:
                this.pictureBox1.Image = Properties.Resources.info;
                this.BackColor         = Color.RoyalBlue;
                break;

            case enmType.Warning:
                this.pictureBox1.Image = Properties.Resources.error;
                this.BackColor         = Color.DarkOrange;
                break;
            }

            this.lblMsg.Text = msg;

            this.Show();
            this.action          = enmAction.start;
            this.timer1.Interval = 1;
            timer1.Start();
        }
Ejemplo n.º 2
0
        public static void MessError(string title)
        {
            AlertForm alertForm = new AlertForm();

            alertForm.showAlert(title, AlertForm.enmType.Error);
        }
Ejemplo n.º 3
0
        public static void MessSuccess(string msg = "Success !!!")
        {
            AlertForm alertForm = new AlertForm();

            alertForm.showAlert(msg, AlertForm.enmType.Success);
        }
Ejemplo n.º 4
0
        public static void Warning(string title)
        {
            AlertForm alertForm = new AlertForm();

            alertForm.showAlert(title, AlertForm.enmType.Warning);
        }
Ejemplo n.º 5
0
        public static void MessInf(string title)
        {
            AlertForm alertForm = new AlertForm();

            alertForm.showAlert(title, AlertForm.enmType.Info);
        }