private void Add_Plot_Click(object sender, EventArgs e) { Add_Plot add = new Add_Plot(); add.Text = "Добавить участок"; add.Form = 0; if (add.ShowDialog() == DialogResult.OK) { Refresh_Plot(); MessageBox.Show("Данные успешно добавлены", "Уведомление", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void Add_Type_Click(object sender, EventArgs e) { Add_Plot add = new Add_Plot(); add.Form = 3; add.label1.Text = "Тип оборудования"; add.Text = "Добавить тип оборудования"; if (add.ShowDialog() == DialogResult.OK) { Refresh(); MessageBox.Show("Данные успешно добавлены", "Уведомление", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void PlotAdd_Click(object sender, EventArgs e) { Add_Plot add = new Add_Plot(); add.Text = "Добавить участок"; add.Form = 0; if (add.ShowDialog() == DialogResult.OK) { OldSelected = EqPlot.Text; load_comboboxes(false, false, true); EqPlot.SelectedIndex = EqPlot.FindStringExact(OldSelected); MessageBox.Show("Данные успешно добавлены", "Уведомление", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void Edit_Type_Click(object sender, EventArgs e) { Add_Plot edit = new Add_Plot(); edit.Form = 4; edit.Text = "Редактировать тип оборудования"; edit.PlotName.Text = TypeGridView.CurrentRow.Cells[1].Value.ToString(); edit.ID = TypeGridView.CurrentRow.Cells[0].Value.ToString(); edit.label1.Text = "Тип оборудования"; if (edit.ShowDialog() == DialogResult.OK) { MessageBox.Show("Данные успешно обновлены", "Уведомление", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void Edit_Plot_Click(object sender, EventArgs e) { Add_Plot edit = new Add_Plot(); edit.Text = "Редактировать участок"; edit.Form = 1; edit.ID = PlotGridView.CurrentRow.Cells[0].Value.ToString(); edit.PlotName.Text = PlotGridView.CurrentRow.Cells[2].Value.ToString(); if (edit.ShowDialog() == DialogResult.OK) { Refresh_Plot(); MessageBox.Show("Данные успешно изменены", "Уведомление", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void TypeAdd_Click(object sender, EventArgs e) { Add_Plot add = new Add_Plot(); add.Form = 3; add.label1.Text = "Тип оборудования"; add.Text = "Добавить тип оборудования"; if (add.ShowDialog() == DialogResult.OK) { OldSelected = EqType.Text; load_comboboxes(true, false, false); EqType.SelectedIndex = EqType.FindStringExact(OldSelected); MessageBox.Show("Данные успешно добавлены", "Уведомление", MessageBoxButtons.OK, MessageBoxIcon.Information); } }