예제 #1
0
        private void _selectCommandsButton_Click(object sender, EventArgs e)
        {
            SelectProcessingCommandsForm form = new SelectProcessingCommandsForm();

            form.Schedule = _model.Schedule;
            if (form.ShowDialog(this) == DialogResult.OK)
            {
                UpdateProcesingCommandsControl();
            }
        }
예제 #2
0
 private void _selectCommandsButton_Click(object sender, EventArgs e)
 {
     SelectProcessingCommandsForm form = new SelectProcessingCommandsForm();
     form.Schedule = _model.Schedule;
     if (form.ShowDialog(this) == DialogResult.OK)
     {
         UpdateProcesingCommandsControl();
     }
 }