1 type derived from TextualExpressionEditor
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (1)
43internal sealed partial class VisualBasicEditor : TextualExpressionEditor
35 references to TextualExpressionEditor
System.Activities.Presentation (35)
System.Activities.Presentation\System\Activities\Presentation\Expressions\TextualExpressionEditor.cs (3)
19public static readonly DependencyProperty MaxLinesProperty = DependencyProperty.Register("MaxLines", typeof(int), typeof(TextualExpressionEditor), 22public static readonly DependencyProperty MinLinesProperty = DependencyProperty.Register("MinLines", typeof(int), typeof(TextualExpressionEditor), 25public static readonly DependencyProperty DefaultValueProperty = DependencyProperty.Register("DefaultValue", typeof(string), typeof(TextualExpressionEditor),
System.Activities.Presentation\System\Activities\Presentation\View\ExpressionTextBox.xaml.cs (32)
382if ((this.IsInlinePropertyEditor) && !(newEditor is TextualExpressionEditor)) 516if ((this.editor != null) && (this.editor is TextualExpressionEditor)) 518(this.editor as TextualExpressionEditor).OnCompleteWordCommandCanExecute(e); 524if ((this.editor != null) && (this.editor is TextualExpressionEditor)) 526(this.editor as TextualExpressionEditor).OnCompleteWordCommandExecute(e); 532if ((this.editor != null) && (this.editor is TextualExpressionEditor)) 534(this.editor as TextualExpressionEditor).OnGlobalIntellisenseCommandCanExecute(e); 540if ((this.editor != null) && (this.editor is TextualExpressionEditor)) 542(this.editor as TextualExpressionEditor).OnGlobalIntellisenseCommandExecute(e); 548if ((this.editor != null) && (this.editor is TextualExpressionEditor)) 550(this.editor as TextualExpressionEditor).OnParameterInfoCommandCanExecute(e); 556if ((this.editor != null) && (this.editor is TextualExpressionEditor)) 558(this.editor as TextualExpressionEditor).OnParameterInfoCommandExecute(e); 564if ((this.editor != null) && (this.editor is TextualExpressionEditor)) 566(this.editor as TextualExpressionEditor).OnQuickInfoCommandCanExecute(e); 572if ((this.editor != null) && (this.editor is TextualExpressionEditor)) 574(this.editor as TextualExpressionEditor).OnQuickInfoCommandExecute(e); 580if ((this.editor != null) && (this.editor is TextualExpressionEditor)) 582(this.editor as TextualExpressionEditor).OnIncreaseFilterLevelCommandCanExecute(e); 588if ((this.editor != null) && (this.editor is TextualExpressionEditor)) 590(this.editor as TextualExpressionEditor).OnIncreaseFilterLevelCommandExecute(e); 596if ((this.editor != null) && (this.editor is TextualExpressionEditor)) 598(this.editor as TextualExpressionEditor).OnDecreaseFilterLevelCommandCanExecute(e); 604if ((this.editor != null) && (this.editor is TextualExpressionEditor)) 606(this.editor as TextualExpressionEditor).OnDecreaseFilterLevelCommandExecute(e); 694TextualExpressionEditor textualEditor = editor as TextualExpressionEditor; 773TextualExpressionEditor textEditor = editor as TextualExpressionEditor; 776SetBinding("MaxLines", TextualExpressionEditor.MaxLinesProperty, textEditor, expressionTextBox); 777SetBinding("MinLines", TextualExpressionEditor.MinLinesProperty, textEditor, expressionTextBox); 778SetBinding("DefaultValue", TextualExpressionEditor.DefaultValueProperty, textEditor, expressionTextBox);