コード例 #1
0
        public void showAlert(string msg, enmType type)
        {
            this.Opacity = 0.0;

            /*this.Location = new Point(
             *  Screen.PrimaryScreen.Bounds.Width - 300,
             *  Screen.PrimaryScreen.Bounds.Height
             *  );*/
            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)
            {
            case enmType.Success:
                this.pictureBox1.Image = Resources.success;
                this.BackColor         = Color.SeaGreen;
                break;

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

            case enmType.Info:
                this.pictureBox1.Image = Resources.info;
                this.BackColor         = Color.RoyalBlue;
                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.timer1.Interval = 1;
            this.timer1.Start();
        }
コード例 #2
0
        public Form_Princ(Modelo.Usuario USER)
        {
            InitializeComponent();
            leftBorderBtn      = new Panel();
            leftBorderBtn.Size = new Size(7, 60);
            panelSideMenu.Controls.Add(leftBorderBtn);
            hideSubMenu();
            oUser = USER;
            labelContador.Visible = false;
            foreach (var comentario in Modelo.SingletonContexto.obtener_instancia().Contexto.ComentariosSet)
            {
                if (comentario.Estado == false)
                {
                    //count++;

                    Form_Alert frm = new Form_Alert(comentario.Articulo, comentario);
                    Nota = comentario.Descripcion;
                    frm.showAlert(Nota, Form_Alert.enmType.Success);
                    //his.pasar_datos();
                }
            }
            Contar();
            if (oUser.Grupo.Descripcion == "Deposito")
            {
                btnHelp.Visible = false;
                button3.Visible = false;
                button4.Visible = false;
                panel2.Visible  = false;
            }

            if (oUser.Grupo.Descripcion == "Compras")
            {
                btn_Remito.Visible = false;
                button3.Visible    = false;
                panel2.Visible     = false;
            }
        }