44 references to VisualBasicEditor
System.Data (44)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DesignerMetadata.cs (3)
73
ExpressionTextBox.RegisterExpressionActivityEditor(
VisualBasicEditor
.ExpressionLanguageName, typeof(
VisualBasicEditor
),
VisualBasicEditor
.CreateExpressionFromString);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ExpressionTextBox.xaml.cs (2)
724
expressionEditorType =
VisualBasicEditor
.ExpressionLanguageName;
730
expressionEditorType =
VisualBasicEditor
.ExpressionLanguageName;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ParserContext.cs (1)
117
List<ModelItem> declaredVariables =
VisualBasicEditor
.GetVariablesInScope(this.baseModelItem);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (34)
53
internal static readonly DependencyProperty TextProperty = DependencyProperty.Register("Text", typeof(string), typeof(
VisualBasicEditor
),
56
internal static readonly DependencyProperty ValidationStateProperty = DependencyProperty.Register("ValidationState", typeof(ValidationState), typeof(
VisualBasicEditor
),
59
internal static readonly DependencyProperty EditingStateProperty = DependencyProperty.Register("EditingState", typeof(EditingState), typeof(
VisualBasicEditor
),
62
internal static readonly DependencyProperty HasValidationErrorProperty = DependencyProperty.Register("HasValidationError", typeof(bool), typeof(
VisualBasicEditor
),
65
internal static readonly DependencyProperty ValidationErrorMessageProperty = DependencyProperty.Register("ValidationErrorMessage", typeof(string), typeof(
VisualBasicEditor
),
68
internal static readonly DependencyProperty ExpressionTextProperty = DependencyProperty.Register("ExpressionText", typeof(string), typeof(
VisualBasicEditor
),
72
public static readonly ICommand CompleteWordCommand = new RoutedCommand("CompleteWordCommand", typeof(
VisualBasicEditor
));
74
public static readonly ICommand GlobalIntellisenseCommand = new RoutedCommand("GlobalIntellisenseCommand", typeof(
VisualBasicEditor
));
76
public static readonly ICommand ParameterInfoCommand = new RoutedCommand("ParameterInfoCommand", typeof(
VisualBasicEditor
));
78
public static readonly ICommand QuickInfoCommand = new RoutedCommand("QuickInfoCommand", typeof(
VisualBasicEditor
));
80
public static readonly ICommand IncreaseFilterLevelCommand = new RoutedCommand("IncreaseFilterLevelCommand", typeof(
VisualBasicEditor
));
82
public static readonly ICommand DecreaseFilterLevelCommand = new RoutedCommand("DecreaseFilterLevelCommand", typeof(
VisualBasicEditor
));
113
ExpressionActivityEditor.HintTextProperty.OverrideMetadata(typeof(
VisualBasicEditor
), new FrameworkPropertyMetadata(SR.ExpressionDefaultText));
195
VisualBasicEditor
etb = dp as
VisualBasicEditor
;
517
List<ModelItem> declaredVariables =
VisualBasicEditor
.GetVariablesInScope(this.OwnerActivity);
667
binding.Path = new PropertyPath(
VisualBasicEditor
.TextProperty);
710
static void ValidateExpression(
VisualBasicEditor
etb)
730
VisualBasicEditor
textBox = (
VisualBasicEditor
)dependencyObject;
764
get { return (ValidationState)GetValue(
VisualBasicEditor
.ValidationStateProperty); }
765
set { SetValue(
VisualBasicEditor
.ValidationStateProperty, value); }
986
valueExpression =
VisualBasicEditor
.CreateExpressionFromString(expReturnType, this.Text, UseLocationExpression, validationContext.ParserContext);
1003
return
VisualBasicEditor
.CreateExpressionFromString(type, expressionText, isLocation, new ParserContext());
1250
if (
VisualBasicEditor
.IsSupportedExpressionType(expression))
1903
internal ExpressionValidationContext(
VisualBasicEditor
etb)
1908
internal void Update(
VisualBasicEditor
etb)
1999
List<ModelItem> arguments =
VisualBasicEditor
.GetVariablesForArguments(ownerActivity.Root);
2039
declaredVariables.AddRange(
VisualBasicEditor
.GetVariablesForArguments(ownerActivity.Root));
2044
declaredVariables.AddRange(
VisualBasicEditor
.GetVariablesInScopeWithShadowing(ownerActivity, includeArguments));
2114
VisualBasicEditor
etb = values[0] as
VisualBasicEditor
;
2136
VisualBasicEditor
etb = values[0] as
VisualBasicEditor
;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditorAutomationPeer.cs (3)
16
public VisualBasicEditorAutomationPeer(
VisualBasicEditor
owner)
23
VisualBasicEditor
textBox = this.Owner as
VisualBasicEditor
;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\VisualBasicExpressionMorphHelper.cs (1)
59
newExpression =
VisualBasicEditor
.CreateExpressionFromString(newType, expressionText, isLocationExpression, new ParserContext());