1 write to Property
Microsoft.Maui.Controls (1)
Interactivity\Trigger.cs (1)
30 ((PropertyCondition)Condition).Property = value;
16 references to Property
Microsoft.Maui.Controls (16)
Interactivity\PropertyCondition.cs (14)
44 return Property.DeclaringType.GetRuntimeProperty(Property.PropertyName); 48 throw new XamlParseException($"Multiple properties with name '{Property.DeclaringType}.{Property.PropertyName}' found.", new XmlLineInfo(), innerException: e); 51 Value = s_valueConverter.Convert(Value, Property.ReturnType, minforetriever, null); 74 return Property.DeclaringType.GetRuntimeProperty(Property.PropertyName); 78 throw new XamlParseException($"Multiple properties with name '{Property.DeclaringType}.{Property.PropertyName}' found.", new XmlLineInfo(), innerException: e); 81 value = s_valueConverter.Convert(value, Property.ReturnType, minforetriever, null); 102 object newvalue = bindable.GetValue(Property); 119 if (Property == null) 121 if (e.PropertyName != Property.PropertyName) 123 object newvalue = bindable.GetValue(Property);
Interactivity\Trigger.cs (2)
22 get { return ((PropertyCondition)Condition).Property; } 25 if (((PropertyCondition)Condition).Property == value)