예제 #1
0
        private void categoriasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            rCategorias rCategorias = new rCategorias();

            rCategorias.MdiParent = this;
            rCategorias.Show();
        }
예제 #2
0
        private void RegsitroDeCategoriasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            rCategorias registro = new rCategorias();

            registro.MdiParent = this;
            registro.Show();
        }
예제 #3
0
        private void DatosDeLaCategoriaButton_Click(object sender, EventArgs e)
        {
            IdCategoriaSeleccionada = Convert.ToInt32(CategoriasDataGridView.CurrentRow.Cells["CategoriaId"].Value);
            rCategorias rC = new rCategorias(IdCategoriaSeleccionada);

            rC.ShowDialog();
        }
예제 #4
0
        private void servicionToolStripMenuItem_Click(object sender, EventArgs e)
        {
            rCategorias categorias = new rCategorias();

            categorias.MdiParent = this;
            categorias.Show();
        }
예제 #5
0
 private void CategoriasDataGridView_DoubleClick(object sender, EventArgs e)
 {
     if (ListadoCatgorias.Count > 0)
     {
         if (CategoriasDataGridView.CurrentRow.Index >= 0)
         {
             DatosDeLaCategoriaButton.Enabled = true;
             IdCategoriaSeleccionada          = Convert.ToInt32(CategoriasDataGridView.CurrentRow.Cells["CategoriaId"].Value);
             rCategorias rC = new rCategorias(IdCategoriaSeleccionada);
             rC.ShowDialog();
         }
     }
 }
예제 #6
0
        private void CategoriasMenuItem_Click(object sender, RoutedEventArgs e)
        {
            rCategorias categorias = new rCategorias();

            categorias.Show();
        }
        //Boton registrar Categorias
        private void CategoriasButton_Click(object sender, RoutedEventArgs e)
        {
            rCategorias rCategoria = new rCategorias();

            rCategoria.Show();
        }
예제 #8
0
        private void RegistrarCategoria_Click(object sender, RoutedEventArgs e)
        {
            rCategorias rcategorias = new rCategorias();

            rcategorias.Show();
        }
예제 #9
0
        private void registroDeCategoriasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            rCategorias rC = new rCategorias(0);

            rC.ShowDialog();
        }
예제 #10
0
        private void ProductosToolStripMenuItem_Click(object sender, EventArgs e)
        {
            rCategorias categorias = new rCategorias();

            categorias.Show();
        }