示例#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();
                Auth_alert frm = (Auth_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)

            {
            case enmType.Success:
                this.BackColor = Color.YellowGreen;
                //this.iconPictureBox1.BackColor = Color.YellowGreen;
                this.iconPictureBox1.IconChar = IconChar.CheckCircle;
                // this.iconButton1.BackColor = Color.YellowGreen;
                // this.iconButton1.ForeColor = Color.YellowGreen;


                break;

            case enmType.Warning:
                this.BackColor = Color.FromArgb(203, 57, 42);
                //this.iconPictureBox1.BackColor = Color.DarkOrange;

                break;

            case enmType.Send:
                this.BackColor = Color.FromArgb(12, 133, 205);
                // this.iconPictureBox1.BackColor = Color.FromArgb(12, 133, 205);
                this.iconPictureBox1.IconChar = IconChar.Clock;
                // this.iconButton1.BackColor = Color.FromArgb(12, 133, 205);
                // this.iconButton1.ForeColor = Color.FromArgb(12, 133, 205);
                //this.iconPictureBox1.BackColor = Color.DarkOrange;

                break;
            }
            this.label1.Text = msg;

            this.Show();
            this.action          = enmAction.start;
            this.timer1.Interval = 1;
            timer1.Start();
        }
示例#2
0
        public void Alert(string msg, Auth_alert.enmType type)
        {
            Auth_alert frm = new Auth_alert();

            frm.showAlert(msg, type);
        }