1 write to _boundProperty
Microsoft.Maui.Controls (1)
Interactivity\BindingCondition.cs (1)
20
_boundProperty
= BindableProperty.CreateAttached("Bound", typeof(object), typeof(BindingCondition), null, propertyChanged: OnBoundPropertyChanged);
4 references to _boundProperty
Microsoft.Maui.Controls (4)
Interactivity\BindingCondition.cs (4)
59
object newValue = bindable.GetValue(
_boundProperty
);
66
bindable.SetBinding(
_boundProperty
, Binding.Clone());
71
bindable.RemoveBinding(
_boundProperty
);
72
bindable.ClearValue(
_boundProperty
, SetterSpecificity.FromBinding);