1 write to elseTextBox
System.Workflow.Activities (1)
Rules\Design\Dialogs\RuleSetDialog.Designer.cs (1)
51
this.
elseTextBox
= new System.Workflow.Activities.Rules.Design.IntellisenseTextBox();
21 references to elseTextBox
System.Workflow.Activities (21)
Rules\Design\Dialogs\RuleSetDialog.cs (15)
88
this.
elseTextBox
.PopulateAutoCompleteList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList);
92
this.
elseTextBox
.PopulateToolTipList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList);
153
this.
elseTextBox
.Enabled = true;
185
this.
elseTextBox
.Text = GetActionsString(rule.ElseActions);
188
this.ruleParser.ParseStatementList(this.
elseTextBox
.Text);
189
elseErrorProvider.SetError(this.
elseTextBox
, string.Empty);
193
elseErrorProvider.SetError(this.
elseTextBox
, ex.Message);
206
this.
elseTextBox
.Text = string.Empty;
214
this.
elseTextBox
.Enabled = false;
217
elseErrorProvider.SetError(this.
elseTextBox
, string.Empty);
278
List<RuleAction> ruleElseActions = this.ruleParser.ParseStatementList(this.
elseTextBox
.Text);
279
this.
elseTextBox
.Text = GetActionsString(ruleElseActions);
284
elseErrorProvider.SetError(this.
elseTextBox
, string.Empty);
288
elseErrorProvider.SetError(this.
elseTextBox
, ex.Message);
543
this.
elseTextBox
.Validating -= this.elseTextBox_Validating;
Rules\Design\Dialogs\RuleSetDialog.Designer.cs (6)
197
this.ruleGroupBox.Controls.Add(this.
elseTextBox
);
223
this.
elseTextBox
.AcceptsReturn = true;
224
resources.ApplyResources(this.
elseTextBox
, "elseTextBox");
225
this.
elseTextBox
.Name = "elseTextBox";
226
this.
elseTextBox
.Validating += new System.ComponentModel.CancelEventHandler(this.elseTextBox_Validating);
372
this.
elseTextBox
.Validating -= this.elseTextBox_Validating;