1 write to thenTextBox
System.Workflow.Activities (1)
Rules\Design\Dialogs\RuleSetDialog.Designer.cs (1)
53
this.
thenTextBox
= new System.Workflow.Activities.Rules.Design.IntellisenseTextBox();
21 references to thenTextBox
System.Workflow.Activities (21)
Rules\Design\Dialogs\RuleSetDialog.cs (15)
87
this.
thenTextBox
.PopulateAutoCompleteList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList);
91
this.
thenTextBox
.PopulateToolTipList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList);
152
this.
thenTextBox
.Enabled = true;
173
this.
thenTextBox
.Text = GetActionsString(rule.ThenActions);
176
this.ruleParser.ParseStatementList(this.
thenTextBox
.Text);
177
thenErrorProvider.SetError(this.
thenTextBox
, string.Empty);
181
thenErrorProvider.SetError(this.
thenTextBox
, ex.Message);
205
this.
thenTextBox
.Text = string.Empty;
213
this.
thenTextBox
.Enabled = false;
216
thenErrorProvider.SetError(this.
thenTextBox
, string.Empty);
254
List<RuleAction> ruleThenActions = this.ruleParser.ParseStatementList(this.
thenTextBox
.Text);
255
this.
thenTextBox
.Text = GetActionsString(ruleThenActions);
260
thenErrorProvider.SetError(this.
thenTextBox
, string.Empty);
264
thenErrorProvider.SetError(this.
thenTextBox
, ex.Message);
542
this.
thenTextBox
.Validating -= this.thenTextBox_Validating;
Rules\Design\Dialogs\RuleSetDialog.Designer.cs (6)
199
this.ruleGroupBox.Controls.Add(this.
thenTextBox
);
235
this.
thenTextBox
.AcceptsReturn = true;
236
resources.ApplyResources(this.
thenTextBox
, "thenTextBox");
237
this.
thenTextBox
.Name = "thenTextBox";
238
this.
thenTextBox
.Validating += new System.ComponentModel.CancelEventHandler(this.thenTextBox_Validating);
371
this.
thenTextBox
.Validating -= this.thenTextBox_Validating;