22 references to Values
Microsoft.Maui.Controls (22)
BindableObject.cs (20)
131 var original = bpcontext.Values.GetSpecificityAndValue(); 134 bpcontext.Values.Remove(SetterSpecificity.FromHandler); 137 var newValue = bpcontext.Values.GetClearedValue(specificity); 145 bpcontext.Values.Remove(specificity); 172 return context == null ? property.DefaultValue : context.Values.GetValue(); 189 Current = new LocalValueEntry(_propertiesEnumerator.Current.Key, _propertiesEnumerator.Current.Value.Values.GetValue(), _propertiesEnumerator.Current.Value.Attributes); 227 var pair = context.Values.GetSpecificityAndValue(); 254 return bpcontext.Values.GetSpecificity() != SetterSpecificity.DefaultValue; 305 var currentSpecificity = context.Values.GetSpecificity(); 308 var currentValue = context.Values.GetValue(); 310 context.Values.Remove(currentSpecificity); 311 context.Values[SetterSpecificity.FromBinding] = currentValue; 349 if (bpContext != null && bpContext.Values.GetSpecificity() >= SetterSpecificity.ManualValueSetter) 612 var specificityAndValue = context.Values.GetSpecificityAndValue(); 620 context.Values.Remove(SetterSpecificity.FromHandler); 621 originalSpecificity = context.Values.GetSpecificity(); 627 context.Values[specificity] = value; 645 context.Values[specificity] = value; 743 context.Values[SetterSpecificity.DefaultValue] = defaultValueCreator != null ? defaultValueCreator(this) : property.DefaultValue; 825 object currentValue = bpcontext.Values.GetValue();
VisualStateManager.cs (1)
73 var vsgSpecificityValue = context.Values.GetSpecificityAndValue();
Xaml\Diagnostics\BindablePropertyDiagnostics.cs (1)
18 var specificity = context.Values.GetSpecificityAndValue().Key;