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

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

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

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

            case FrmNotificaciones.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();
        }
Ejemplo n.º 2
0
        private void Timer1_Tick(object sender, EventArgs e)
        {
            switch (this.action)
            {
            case FrmNotificaciones.actionEnum.wait:
                this.Timer1.Interval = 5000;
                this.action          = FrmNotificaciones.actionEnum.close;
                break;

            case FrmNotificaciones.actionEnum.start:
                this.Timer1.Interval = 1;
                this.Opacity        += 0.1;
                if (this.x < this.Location.X)
                {
                    this.Left--;
                }
                else
                {
                    if (this.Opacity == 1.0)
                    {
                        this.action = FrmNotificaciones.actionEnum.wait;
                    }
                }
                break;

            case FrmNotificaciones.actionEnum.close:
                this.Timer1.Interval = 1;
                this.Opacity        -= 0.1;

                this.Left -= 3;
                if (base.Opacity == 0.0)
                {
                    base.Close();
                }
                break;
            }
        }
Ejemplo n.º 3
0
 private void GunaPictureBox2_Click_1(object sender, EventArgs e)
 {
     this.Timer1.Interval = 1;
     this.action          = FrmNotificaciones.actionEnum.close;
 }