6 references to PopulateAutoCompleteList
System.Workflow.Activities (6)
Rules\Design\Dialogs\IntellisenseTextBox.cs (2)
463if (this.PopulateAutoCompleteList != null) 464this.PopulateAutoCompleteList(this, autoCompletionEventArgs);
Rules\Design\Dialogs\RuleConditionDialog.cs (1)
95this.conditionTextBox.PopulateAutoCompleteList += new EventHandler<AutoCompletionEventArgs>(ConditionTextBox_PopulateAutoCompleteList);
Rules\Design\Dialogs\RuleSetDialog.cs (3)
86this.conditionTextBox.PopulateAutoCompleteList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList); 87this.thenTextBox.PopulateAutoCompleteList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList); 88this.elseTextBox.PopulateAutoCompleteList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList);