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