コード例 #1
0
        public void showAlert(string msg, int x, int width, int y, int height)
        {
            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        = x + width / 2 - this.Width / 2;
                    this.y        = y + height / 2 - this.Height / 2;
                    this.Location = new Point(this.x, this.y);
                    break;
                }
            }

            this.BackColor           = Color.SlateGray;
            this.AlertFormLabel.Text = msg;

            this.Show();
            User32.SetForegroundWindow(this.Handle);
            this.action = enmAction.start;
            this.AlertFormTimer.Interval = 1;
            this.AlertFormTimer.Start();
        }
コード例 #2
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();
                //Message forma = (Message)Application.OpenForms[fname];
                Messages forma = (Messages)Application.OpenForms[fname];
                if (forma == null)
                {
                    this.Name = fname;
                    //od lewej
                    this.x = Screen.PrimaryScreen.WorkingArea.Width - this.Width + 15;
                    //margines od dołu
                    this.y        = Screen.PrimaryScreen.WorkingArea.Height - this.Height * i - 5 * i;
                    this.Location = new Point(this.x, this.y);
                    break;
                }
            }
            //margines od prawej
            this.x = Screen.PrimaryScreen.WorkingArea.Width - base.Width - 5;

            switch (type)
            {
            case enmType.Success:
                this.pictureBox1.Image = Resources.succes_32px;
                this.BackColor         = Color.SeaGreen;
                break;

            case enmType.Error:
                this.pictureBox1.Image = Resources.cancel_32px;
                this.BackColor         = Color.DarkRed;
                break;

            case enmType.Warning:
                this.pictureBox1.Image = Resources.warning_shield_32px;
                this.BackColor         = Color.DarkOrange;
                break;

            case enmType.Info:
                this.pictureBox1.Image = Resources.information_32px;
                this.BackColor         = Color.RoyalBlue;
                break;
            }
            //przypisanie tekstu z konstruktora
            this.label1.Text = msg;
            this.Show();
            this.action          = enmAction.start;
            this.timer1.Interval = 1;
            timer1.Start();
        }
コード例 #3
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();
                Alert frm = (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.pictureBox1.Image = Resources.success;
                this.BackColor         = Color.FromArgb(40, 167, 69);
                break;

            case enmType.Error:
                this.pictureBox1.Image = Resources.error;
                this.BackColor         = Color.FromArgb(220, 53, 69);
                break;

            case enmType.Info:
                this.pictureBox1.Image = Resources.info;
                this.BackColor         = Color.FromArgb(23, 162, 184);
                break;

            case enmType.Warning:
                this.pictureBox1.Image = Resources.warning;
                this.BackColor         = Color.FromArgb(255, 193, 7);
                break;
            }

            this.lblMsg.Text = msg;

            this.Show();
            this.action          = enmAction.start;
            this.timer1.Interval = 1;
            this.timer1.Start();
        }
コード例 #4
0
        private void timer1_Tick_1(object sender, EventArgs e)
        {
            switch (this.action)
            {
            case enmAction.wait:
                timer1.Interval = 4000;
                action          = enmAction.close;
                break;

            case enmAction.start:
                timer1.Interval = 1;
                this.Opacity   += 0.1;
                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.1;

                this.Left -= 3;
                if (base.Opacity == 0.0)
                {
                    base.Close();
                }
                break;
            }
        }
コード例 #5
0
 private void button1_Click(object sender, EventArgs e)
 {
     timer1.Interval = 1;
     action          = enmAction.close;
     this.Close();
 }
コード例 #6
0
 private void picClose_Click(object sender, EventArgs e)
 {
     timer1.Interval = 1;
     action          = enmAction.close;
 }