private void newB_Click(object sender, EventArgs e) { newPovolaniDialog newpov = new newPovolaniDialog(); newpov.Text = "Nové povolání"; this.Hide(); if (newpov.ShowDialog(this) == DialogResult.OK) { listBox.Items.Add(newpov.jmeno); } newpov.Close(); this.Show(); }
private void editB_Click(object sender, EventArgs e) { if (listBox.SelectedIndex == -1) { MessageBox.Show("Pro úpravu musíte vybrat povolání ze seznamu.", "Vyberte povolání", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } newPovolaniDialog editpov = new newPovolaniDialog(listBox.Text); editpov.Text = "Úprava povolání"; this.Hide(); if (editpov.ShowDialog(this) == DialogResult.OK) { listBox.Items.Insert(listBox.Items.IndexOf(editpov.edit), editpov.jmeno); listBox.Items.RemoveAt(listBox.Items.IndexOf(editpov.edit)); } this.Show(); }