private void timer1_Tick(object sender, EventArgs e) { switch (this.action) { case enmAction.wait: timer1.Interval = 2000; action = enmAction.close; break; case enmAction.start: timer1.Interval = 1; this.Opacity += 0.08; 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.08; this.Left -= 3; if (base.Opacity == 0.0) { base.Close(); } break; } }
public void showAlert(string msg, enmType type) { this.Opacity = 0.0; this.StartPosition = FormStartPosition.Manual; string fname; for (int i = 1; i < 10; i++) { fname = "alert" + i.ToString(); AlertForm frm = (AlertForm)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.Location = new Point(this.x, this.y); break; } } this.x = Screen.PrimaryScreen.WorkingArea.Width - base.Width - 5; switch (type) { case enmType.Success: this.pictureBox2.Image = Resources.ok; this.BackColor = Color.SeaGreen; break; case enmType.Error: this.pictureBox2.Image = Resources.ok; this.BackColor = Color.OrangeRed; break; case enmType.Info: this.pictureBox2.Image = Resources.ok; this.BackColor = Color.SeaGreen; break; case enmType.Warning: this.pictureBox2.Image = Resources.ok; this.BackColor = Color.SeaGreen; break; } thongBaoTxt.Text = msg; this.Show(); this.action = enmAction.start; this.timer1.Interval = 1; this.timer1.Start(); }
public void showAlert(string msg, enmType type) { this.Opacity = 0.0; this.StartPosition = FormStartPosition.Manual; string fname; for (int i = 1; i < 10; i++) { fname = "alert" + i.ToString(); AlertForm frm = (AlertForm)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.Location = new Point(this.x, this.y); break; } } this.x = Screen.PrimaryScreen.WorkingArea.Width - base.Width - 5; switch (type) { case enmType.Success: this.pbIcon.IconChar = IconChar.Check; this.BackColor = Color.SeaGreen; break; case enmType.Error: this.pbIcon.IconChar = IconChar.Times; this.BackColor = Color.DarkRed; break; case enmType.Info: this.pbIcon.IconChar = IconChar.Info; this.BackColor = Color.RoyalBlue; break; case enmType.Warning: this.pbIcon.IconChar = IconChar.Exclamation; this.BackColor = Color.DarkOrange; break; } this.lblMessage.Text = msg; this.Show(); this.action = enmAction.start; this.timer1.Interval = 1; this.timer1.Start(); }
public void showAlert(string msg, enmType enmType) { this.Opacity = 0.0; this.StartPosition = FormStartPosition.Manual; string fname; for (int i = 0; i < 10; ++i) { fname = "alert " + i.ToString(); AlertForm frm = (AlertForm)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 + 1); this.Location = new Point(this.x, this.y); break; } } this.x = Screen.PrimaryScreen.WorkingArea.Width - base.Width - 5; switch (enmType) { case enmType.Success: this.pictureBox1.Image = Properties.Resources.success; this.BackColor = Color.SeaGreen; break; case enmType.Error: this.pictureBox1.Image = Properties.Resources.warning; this.BackColor = Color.DarkRed; break; case enmType.Info: this.pictureBox1.Image = Properties.Resources.info; this.BackColor = Color.RoyalBlue; break; case enmType.Warning: this.pictureBox1.Image = Properties.Resources.error; this.BackColor = Color.DarkOrange; break; } this.lblMsg.Text = msg; this.Show(); this.action = enmAction.start; this.timer1.Interval = 1; timer1.Start(); }
public void showAlert(string msg, enmType type) { this.Opacity = 0.0; this.StartPosition = FormStartPosition.Manual; string fname; for (int i = 1; i < 10; i++) { fname = "alert" + i.ToString(); AlertForm frm = (AlertForm)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.Location = new Point(this.x, this.y); break; } } this.x = Screen.PrimaryScreen.WorkingArea.Width - base.Width - 5; switch (type) { case enmType.TransactionCompleted: this.pictureBoxAlert.Image = Properties.Resources.transaction_completed; this.labelAlert.ForeColor = Color.SeaGreen; break; case enmType.NotEnoughMoney: this.pictureBoxAlert.Image = Properties.Resources.not_enough_money; this.labelAlert.ForeColor = Color.Red; break; case enmType.NotEnoughTokens: this.pictureBoxAlert.Image = Properties.Resources.not_enough_tokens; this.labelAlert.ForeColor = Color.Red; break; } this.labelAlert.Text = msg; this.Show(); this.action = enmAction.start; this.timer1.Interval = 1; this.timer1.Start(); }
private void buttonClose_Click(object sender, EventArgs e) { timer1.Interval = 1; action = enmAction.close; }
private void bunifuImageButton1_Click(object sender, EventArgs e) { timer1.Interval = 1; action = enmAction.close; }