Exemplo n.º 1
0
        public void showAlert(string msg, enmType type)
        {
            this.Opacity       = 0.0;
            this.StartPosition = FormStartPosition.Manual;
            this.Location      = new Point(1600, 200);

            /* string fname;
             *
             * for (int i = 0; i < 10; i++)
             * {
             *   fname = "alert" + i.ToString();
             *   frm_Alert frm = (frm_Alert)Application.OpenForms[fname];
             *
             *   if (frm == null)
             *   {
             *       this.x = Screen.PrimaryScreen.WorkingArea.Width - this.Width + 15;
             *       this.x = Screen.PrimaryScreen.WorkingArea.Height - this.Height * i;
             *       this.Location = new Point(this.x, this.y);
             *       break;
             *   }
             * } */
            this.x = Screen.PrimaryScreen.WorkingArea.Width - base.Width - 5;

            switch (type)
            {
            case enmType.Success:
                this.gunaPictureBox1.Image = Resources.succesicon;
                this.BackColor             = Color.LimeGreen;
                break;

            case enmType.Error:
                this.gunaPictureBox1.Image = Resources.erroricon;
                this.BackColor             = Color.Red;
                break;
            }

            this.lblMsg.Text = msg;

            this.Show();
            this.action          = enmAction.start;
            this.timer1.Interval = 1;
            timer1.Start();
        }
Exemplo n.º 2
0
        private void Timer1_Tick(object sender, EventArgs e)
        {
            switch (this.action)
            {
            case enmAction.wait:
                timer1.Interval = 5000;
                action          = enmAction.close;
                break;

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

            case enmAction.close:
                timer1.Interval = 1;
                this.Opacity   -= 0.1;

                this.Left -= 3;
                if (base.Opacity == 0.0)
                {
                    base.Close();
                }
                break;
            }
        }
Exemplo n.º 3
0
 private void GunaPictureBox2_Click(object sender, EventArgs e)
 {
     timer1.Interval = 1;
     action          = enmAction.close;
 }