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(); Form_Alert frm = (Form_Alert)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) { // See list of ui symbol at https://docs.microsoft.com/en-us/windows/uwp/design/style/segoe-ui-symbol-font case enmType.Success: labelIcon.Text = "\xEB68"; labelIcon.ForeColor = ColorTranslator.FromHtml("#3ddc84"); //this.BackColor = ColorTranslator.FromHtml("#3ddc84"); break; case enmType.Error: labelIcon.Text = "\xEB5E"; labelIcon.ForeColor = ColorTranslator.FromHtml("#f86734"); //this.BackColor = ColorTranslator.FromHtml("#f86734"); break; case enmType.Rung: labelIcon.Text = "\xEB8C"; labelIcon.ForeColor = ColorTranslator.FromHtml("#f1cc81"); SystemSounds.Beep.Play(); //this.BackColor = ColorTranslator.FromHtml("#f1cc81"); break; } this.alertMsg.Text = msg; this.Show(); this.action = enmAction.start; this.timer1.Interval = 1; this.timer1.Start(); }
// Show the notification on the desktop (Main display) public void Alert(string msg, Form_Alert.enmType type) { Form_Alert frm = new Form_Alert(); frm.showAlert(msg, type); }