コード例 #1
0
        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();
        }
コード例 #2
0
        public static void Alert(string msg, AlertForm.enmType type)
        {
            AlertForm frm = new AlertForm();

            frm.showAlert(msg, type);
        }
コード例 #3
0
        private void Alert(string msg, AlertForm.enmType type)
        {
            AlertForm frm = new AlertForm();

            frm.showAlert(msg, type);
        }