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