Ejemplo n.º 1
0
        public void setAlert(string msg, frmThongBao.alertTypeEnum type)
        {
            this.Opacity       = 0.0;
            this.StartPosition = FormStartPosition.Manual;
            string fname;

            for (int i = 1; i < 10; i++)
            {
                fname = "alert" + i.ToString();
                frmThongBao f = (frmThongBao)Application.OpenForms[fname];

                if (f == 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.Location = new Point(this.x, this.y);
                    break;
                }
            }

            this.x = Screen.PrimaryScreen.WorkingArea.Width - base.Width - 5;
            switch (type)
            {
            case frmThongBao.alertTypeEnum.Success:
                pictureBox1.Image = Resources.Checkmark_28px;
                this.BackColor    = Color.FromArgb(42, 171, 160);
                break;

            case frmThongBao.alertTypeEnum.Warning:
                pictureBox1.Image = Resources.Warning_28px;
                this.BackColor    = Color.FromArgb(255, 179, 2);
                break;

            case frmThongBao.alertTypeEnum.Error:
                pictureBox1.Image = Resources.Error_28px;
                this.BackColor    = Color.FromArgb(255, 121, 70);
                break;

            case frmThongBao.alertTypeEnum.Info:
                pictureBox1.Image = Resources.Info_28px;
                this.BackColor    = Color.FromArgb(71, 169, 248);
                break;
            }
            this.bunifuLabel1.Text = msg;

            //this.TopMost = false;
            //this.ShowIcon = false;
            //this.ShowInTaskbar = false;

            this.Show();
            this.action          = actionEnum.start;
            this.Timer1.Interval = 1;
            this.Timer1.Start();
        }
Ejemplo n.º 2
0
        public void Alert(string msg, frmThongBao.alertTypeEnum type)
        {
            frmThongBao f = new frmThongBao();

            f.setAlert(msg, type);
        }