public EnmData(int index, int x, int y, int EnmIndex, EnmType EnmType, bool IsHide) : base(index, x, y) { Type = EnmType; m_i = EnmIndex; State = IsHide ? EnmState.Hide : EnmState.Active; pOnReportPanelChange = new ReportPanelChange(OnReportPanelChange); }
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(); BildirimForms bildirimcs = (BildirimForms)Application.OpenForms[fname]; if (bildirimcs == 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.pictureBox1.Image = Resources.tick; this.BackColor = Color.Green; break; case EnmType.Error: this.pictureBox1.Image = Resources.error; this.BackColor = Color.DarkRed; break; case EnmType.Warning: this.pictureBox1.Image = Resources.warning; this.BackColor = Color.DarkOrange; break; } this.LblMsg.Text = msg; this.Show(); this.action = EnmAction.start; this.Zamanlayici.Interval = 1; Zamanlayici.Start(); }