Ejemplo n.º 1
0
        private void _btUpdate_Click(object sender, System.EventArgs e)
        {
            if (_controller != null)
            {
                _controller.Update();
            }

            DialogResult = DialogResult.OK;
            Close();
        }
Ejemplo n.º 2
0
        private void EhUpdate(object sender, RoutedEventArgs e)
        {
            if (_backgroundCancelControl.ExecutionInProgress)
            {
                return;
            }

            if (_controller != null)
            {
                _controller.Update();
            }

            DialogResult = true;
        }
Ejemplo n.º 3
0
        public void EhView_NumberOfParameterChanged(int numParameter)
        {
            _scriptController.Update();
            _tempNumberOfParameters = numParameter;

            if (null != View)
            {
                View.EnableScriptView(_scriptController.ViewObject, false);
            }

            if (View != null && !_tempIsUsingUserDefinedParameters)
            {
                View.SetParameterText(GetDefaultParametersAsLine(_tempNumberOfParameters), _tempIsUsingUserDefinedParameters);
            }
        }