1 write to Property
Microsoft.Maui.Controls (1)
Interactivity\Trigger.cs (1)
28 ((PropertyCondition)Condition).Property = value;
16 references to Property
Microsoft.Maui.Controls (16)
Interactivity\PropertyCondition.cs (14)
42 return Property.DeclaringType.GetRuntimeProperty(Property.PropertyName); 46 throw new XamlParseException($"Multiple properties with name '{Property.DeclaringType}.{Property.PropertyName}' found.", new XmlLineInfo(), innerException: e); 49 Value = s_valueConverter.Convert(Value, Property.ReturnType, minforetriever, null); 72 return Property.DeclaringType.GetRuntimeProperty(Property.PropertyName); 76 throw new XamlParseException($"Multiple properties with name '{Property.DeclaringType}.{Property.PropertyName}' found.", new XmlLineInfo(), innerException: e); 79 value = s_valueConverter.Convert(value, Property.ReturnType, minforetriever, null); 94 object newvalue = bindable.GetValue(Property); 111 if (Property == null) 113 if (e.PropertyName != Property.PropertyName) 115 object newvalue = bindable.GetValue(Property);
Interactivity\Trigger.cs (2)
20 get { return ((PropertyCondition)Condition).Property; } 23 if (((PropertyCondition)Condition).Property == value)