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