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

            for (int i = 1; i < 10; i++)
            {
                fname = "alert" + i.ToString();
                frmAlert f = (frmAlert)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 frmAlert.alertTypeEnum.Success:
                this.GunaPictureBox1.Image = Resources.Checkmark_28px;
                this.BackColor             = Color.FromArgb(42, 171, 160);
                break;

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

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

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

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

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

            f.setAlert(msg, type);
        }