Beispiel #1
0
        public void ShowAlert(string title, string msg, InfoType type, int timeout = 5000)
        {
            this.timeout       = timeout;
            this.Opacity       = 0.0;
            this.StartPosition = FormStartPosition.Manual;
            string fname;

            for (int i = 1; i < 8; i++)
            {
                fname = "alert" + i.ToString();
                PopupAlert frm = (PopupAlert)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 - 5 * i;
                    // this.y = this.Height * (i - 1) + 5 * i;
                    this.Location = new Point(this.x, this.y);
                    break;
                }
            }
            this.x = Screen.PrimaryScreen.WorkingArea.Width - base.Width - 5;

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

            case InfoType.Error:
                this.pictureBox1.Image = Resources.error;
                this.BackColor         = Color.DarkRed;
                break;

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

            case InfoType.Warning:
                this.pictureBox1.Image = Resources.warning;
                this.BackColor         = Color.DarkOrange;
                break;
            }

            this.lblTitle.Text = title;
            this.lblMsg.Text   = msg;

            this.Show();
            this.action          = State.Starting;
            this.timer1.Interval = 1;
            this.timer1.Start();
        }
Beispiel #2
0
        public void Alert(string title, string msg, PopupAlert.InfoType type)
        {
            PopupAlert frm = new PopupAlert();

            frm.ShowAlert(title, msg, type);
        }