Esempio n. 1
0
        private void btnPrincipal_Click(object sender, EventArgs e)
        {
            Color       color  = new Color();
            ColorDialog color2 = new ColorDialog();

            if (color2.ShowDialog() == DialogResult.OK)
            {
                color = color2.Color;
                frm.pnlColorPrincipal.BackColor = color;
                for (int i = 0; i < 28; i++)
                {
                    frm.ListaGraficas.ListaGraficas1[i].CambioColor("Principal", color);
                }
            }
            frm.Refresh();
        }
Esempio n. 2
0
 private void PICNUEVO_Click(object sender, EventArgs e)
 {
     Pantalla.Refresh();
     Pantalla.Image = null;
 }
Esempio n. 3
0
 private void nuevoToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Pantalla.Refresh();
     Pantalla.Image = null;
 }
Esempio n. 4
0
 void NuevoClick(object sender, EventArgs e)
 {
     Pantalla.Refresh();
     Pantalla.Image = null;
 }
Esempio n. 5
0
 //boton limpiar pantalla
 private void button5_Click(object sender, EventArgs e)
 {
     Pantalla.Refresh();
     Pantalla.Image = null;
 }