6 instantiations of BindingExpression
Microsoft.Maui.Controls (6)
Binding.cs (3)
77 _expression = new BindingExpression(this, !string.IsNullOrWhiteSpace(value) ? value : SelfPath); 116 _expression = new BindingExpression(this, SelfPath); 149 _expression = new BindingExpression(this, SelfPath);
TemplateBinding.cs (3)
83 _expression = new BindingExpression(this, SelfPath); 137 _expression = new BindingExpression(this, SelfPath); 144 return new BindingExpression(this, !string.IsNullOrWhiteSpace(path) ? path : SelfPath);
14 references to BindingExpression
Microsoft.Maui.Controls (14)
AppThemeBinding.cs (1)
112 BindingDiagnostics.SendBindingFailure(this, null, target, _targetProperty, "AppThemeBinding", BindingExpression.CannotConvertTypeErrorMessage, value, _targetProperty.ReturnType);
Binding.cs (1)
18 BindingExpression _expression;
BindingExpression.cs (2)
626 readonly BindingExpression _expression; 632 public BindingExpressionPart(BindingExpression expression, string content, bool isIndexer = false)
MultiBinding.cs (2)
105 BindingDiagnostics.SendBindingFailure(this, null, _targetObject, _targetProperty, "MultiBinding", BindingExpression.CannotConvertTypeErrorMessage, value, _targetProperty.ReturnType); 178 BindingDiagnostics.SendBindingFailure(this, context, _targetObject, _targetProperty, "MultiBinding", BindingExpression.CannotConvertTypeErrorMessage, value, _targetProperty.ReturnType);
RelativeBindingSource.cs (2)
74 internal async Task Apply(BindingExpression expression, Element relativeSourceTarget, BindableObject targetObject, BindableProperty targetProperty, SetterSpecificity specificity) 200 BindingExpression expression,
TemplateBinding.cs (2)
17 BindingExpression _expression; 142 BindingExpression GetBindingExpression(string path)
TypedBinding.cs (4)
322 BindingDiagnostics.SendBindingFailure(this, sourceObject, target, property, "Binding", BindingExpression.CannotConvertTypeErrorMessage, value, property.ReturnType); 335 BindingDiagnostics.SendBindingFailure(this, sourceObject, target, property, "Binding", BindingExpression.CannotConvertTypeErrorMessage, value, typeof(TProperty)); 461 public BindingExpression.WeakPropertyChangedProxy Listener { get; } 495 Listener = new BindingExpression.WeakPropertyChangedProxy();