private void ShowTaskForm(TaskForm taskForm) { taskForm.StartPosition = FormStartPosition.CenterParent; System.Windows.Forms.DialogResult resultant = taskForm.ShowDialog(); while (resultant == System.Windows.Forms.DialogResult.Retry) { resultant = taskForm.ShowDialog(); } }
private void cmdAddTask_Click(object sender, EventArgs e) { listSelectedIndex = listBox1.SelectedIndex; if (listSelectedIndex >= 0) { List list = allLists[listSelectedIndex]; TaskForm taskForm = new TaskForm(list); ShowTaskForm(taskForm); GetData(); } }
private void cmdViewTaskDetails_Click(object sender, EventArgs e) { taskSelectedIndex = taskBox.SelectedIndex; if (taskSelectedIndex >= 0) { Task task = tasks[taskSelectedIndex]; TaskForm taskForm = new TaskForm(task); taskForm.StartPosition = FormStartPosition.CenterParent; if (taskForm.ShowDialog() == DialogResult.OK) { GetData(); } } }