5 overrides of Apply
Microsoft.Maui.Controls (5)
AppThemeBinding.cs (1)
67 internal override void Apply(object context, BindableObject bindObj, BindableProperty targetProperty, bool fromBindingContextChanged, SetterSpecificity specificity)
Binding.cs (1)
121 internal override void Apply(object context, BindableObject bindObj, BindableProperty targetProperty, bool fromBindingContextChanged, SetterSpecificity specificity)
MultiBinding.cs (1)
136 internal override void Apply(object context, BindableObject targetObject, BindableProperty targetProperty, bool fromBindingContextChanged, SetterSpecificity specificity)
TemplateBinding.cs (1)
88 internal override async void Apply(object newContext, BindableObject bindObj, BindableProperty targetProperty, bool fromBindingContextChanged, SetterSpecificity specificity)
TypedBinding.cs (1)
171 internal override void Apply(object context, BindableObject bindObj, BindableProperty targetProperty, bool fromBindingContextChanged, SetterSpecificity specificity)
9 references to Apply
Microsoft.Maui.Controls (9)
AppThemeBinding.cs (1)
71 base.Apply(context, bindObj, targetProperty, fromBindingContextChanged, specificity);
BindableObject.cs (3)
335 binding.Apply(BindingContext, this, targetProperty, false, specificity); 716 binding.Apply(BindingContext, this, context.Property, fromBindingContextChanged, specificity); 779 currentbinding?.Apply(BindingContext, this, property, false, context.Bindings.GetClearedSpecificity());
Binding.cs (1)
127 base.Apply(bindingContext, bindObj, targetProperty, fromBindingContextChanged, specificity);
MultiBinding.cs (1)
144 base.Apply(context, targetObject, targetProperty, fromBindingContextChanged, specificity);
Picker\Picker.cs (1)
230 ItemDisplayBinding.Apply(item, this, s_displayProperty, false, SetterSpecificity.FromBinding);
TemplateBinding.cs (1)
94 base.Apply(newContext, bindObj, targetProperty, fromBindingContextChanged, specificity);
TypedBinding.cs (1)
181 base.Apply(source, bindObj, targetProperty, fromBindingContextChanged, specificity);