示例#1
0
        private void checkBox1_CheckedChanged(object sender, EventArgs e)
        {
            PantallaInventario pi = new PantallaInventario();

            pi.LlenarTablaInventarioTelevisor(dataGridView1);

            if (checkBox1.Checked == false)
            {
                pi.LlenarTablaInventario(dataGridView1);
            }
        }
示例#2
0
        private void PantallaInventario_Load(object sender, EventArgs e)
        {
            PantallaInventario pi = new PantallaInventario();

            pi.LlenarTablaInventario(dataGridView1);
        }