9 references to BindingContextProperty
Microsoft.Maui.Controls (9)
BindableLayout\BindableLayout.cs (2)
431 maybeEmptyView.ClearValue(BindableObject.BindingContextProperty); 462 child.ClearValue(BindableObject.BindingContextProperty);
BindableObject.cs (6)
57 get => _inheritedContext?.Target ?? GetValue(BindingContextProperty); 58 set => SetValue(BindingContextProperty, value); 348 BindablePropertyContext bpContext = bindable.GetContext(BindingContextProperty); 377 BindablePropertyContext bpContext = GetContext(BindingContextProperty); 637 bool sameValue = ReferenceEquals(context.Property, BindingContextProperty) ? ReferenceEquals(value, original) : Equals(value, original); 687 if (ReferenceEquals(context.Property, BindingContextProperty))
Handlers\Items2\iOS\TemplatedCell2.cs (1)
146 view.SetValueFromRenderer(BindableObject.BindingContextProperty, bindingContext);