示例#1
0
        //Called when the add task item button is clicked
        private void AddTaskItemButton_Click(object sender, EventArgs e)
        {
            //Create select task item dialog
            SelectTaskItemDialog selectTaskItemDialog = new SelectTaskItemDialog();

            //If the user selected a task item type
            if (selectTaskItemDialog.ShowDialog() == DialogResult.OK)
            {
                //Add task item to the selected task
                selectedTask.AddTaskItem(selectTaskItemDialog.SelectedTaskItemType);
            }
        }