Ejemplo n.º 1
0
 private void add_newRecipeButton_Click(object sender, EventArgs e)
 {
     Add_ModifyForm addWeightForm = new Add_ModifyForm();
     addWeightForm.pushForm(this);
     addWeightForm.changControl("add_weight");
     addWeightForm.currentIndex(chooseRecipeDateGridView.CurrentCell.RowIndex);
     addWeightForm.pushLabel(
     dataTableAddRecipe.Rows[chooseRecipeDateGridView.CurrentCell.RowIndex][2].ToString()
     , dataTableAddRecipe.Rows[chooseRecipeDateGridView.CurrentCell.RowIndex][0].ToString()
     , dataTableAddRecipe.Rows[chooseRecipeDateGridView.CurrentCell.RowIndex][3].ToString()
     );
     addWeightForm.StartPosition = FormStartPosition.CenterScreen;
     addWeightForm.Show();
 }