Пример #1
0
 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();
     }
 }
Пример #2
0
        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();
                }
            }
        }
Пример #3
0
 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();
     }
 }
Пример #4
0
        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();
                }
            }
        }