2 instantiations of AutoCompletionEventArgs
System.Workflow.Activities (2)
Rules\Design\Dialogs\IntellisenseTextBox.cs (2)
461AutoCompletionEventArgs autoCompletionEventArgs = new AutoCompletionEventArgs(); 502AutoCompletionEventArgs autoCompletionEventArgs = new AutoCompletionEventArgs();
14 references to AutoCompletionEventArgs
System.Workflow.Activities (14)
Rules\Design\Dialogs\IntellisenseTextBox.cs (4)
23public event EventHandler<AutoCompletionEventArgs> PopulateAutoCompleteList; 24public event EventHandler<AutoCompletionEventArgs> PopulateToolTipList; 461AutoCompletionEventArgs autoCompletionEventArgs = new AutoCompletionEventArgs(); 502AutoCompletionEventArgs autoCompletionEventArgs = new AutoCompletionEventArgs();
Rules\Design\Dialogs\RuleConditionDialog.cs (3)
95this.conditionTextBox.PopulateAutoCompleteList += new EventHandler<AutoCompletionEventArgs>(ConditionTextBox_PopulateAutoCompleteList); 96this.conditionTextBox.PopulateToolTipList += new EventHandler<AutoCompletionEventArgs>(ConditionTextBox_PopulateAutoCompleteList); 119private void ConditionTextBox_PopulateAutoCompleteList(object sender, AutoCompletionEventArgs e)
Rules\Design\Dialogs\RuleSetDialog.cs (7)
86this.conditionTextBox.PopulateAutoCompleteList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList); 87this.thenTextBox.PopulateAutoCompleteList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList); 88this.elseTextBox.PopulateAutoCompleteList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList); 90this.conditionTextBox.PopulateToolTipList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList); 91this.thenTextBox.PopulateToolTipList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList); 92this.elseTextBox.PopulateToolTipList += new EventHandler<AutoCompletionEventArgs>(PopulateAutoCompleteList); 135private void PopulateAutoCompleteList(object sender, AutoCompletionEventArgs e)