1 write to conditionTextBox
System.Workflow.Activities (1)
Rules\Design\Dialogs\RuleConditionDialog.Designer.cs (1)
38
this.
conditionTextBox
= new System.Workflow.Activities.Rules.Design.IntellisenseTextBox();
20 references to conditionTextBox
System.Workflow.Activities (20)
Rules\Design\Dialogs\RuleConditionDialog.cs (15)
90
this.
conditionTextBox
.Text = ruleExpressionCondition.ToString().Replace("\n", "\r\n");
93
this.
conditionTextBox
.Text = string.Empty;
95
this.
conditionTextBox
.PopulateAutoCompleteList += new EventHandler<AutoCompletionEventArgs>(ConditionTextBox_PopulateAutoCompleteList);
96
this.
conditionTextBox
.PopulateToolTipList += new EventHandler<AutoCompletionEventArgs>(ConditionTextBox_PopulateAutoCompleteList);
100
this.ruleParser.ParseCondition(this.
conditionTextBox
.Text);
101
conditionErrorProvider.SetError(this.
conditionTextBox
, string.Empty);
105
conditionErrorProvider.SetError(this.
conditionTextBox
, ex.Message);
130
this.ruleExpressionCondition = (RuleExpressionCondition)this.ruleParser.ParseCondition(this.
conditionTextBox
.Text);
132
if (!string.IsNullOrEmpty(this.
conditionTextBox
.Text))
133
this.
conditionTextBox
.Text = this.ruleExpressionCondition.ToString().Replace("\n", "\r\n");
134
conditionErrorProvider.SetError(this.
conditionTextBox
, string.Empty);
140
conditionErrorProvider.SetError(this.
conditionTextBox
, ex.Message);
195
this.
conditionTextBox
.SelectionStart = ((RuleSyntaxException)syntaxException).Position;
196
this.
conditionTextBox
.SelectionLength = 0;
197
this.
conditionTextBox
.ScrollToCaret();
Rules\Design\Dialogs\RuleConditionDialog.Designer.cs (5)
81
this.
conditionTextBox
.AcceptsReturn = true;
82
resources.ApplyResources(this.
conditionTextBox
, "conditionTextBox");
83
this.
conditionTextBox
.Name = "conditionTextBox";
84
this.
conditionTextBox
.Validating += new System.ComponentModel.CancelEventHandler(this.conditionTextBox_Validating);
103
this.Controls.Add(this.
conditionTextBox
);