1 instantiation of PropertyCondition
Microsoft.Maui.Controls (1)
Interactivity\Trigger.cs (1)
15 public Trigger([System.ComponentModel.TypeConverter(typeof(TypeTypeConverter))][Parameter("TargetType")] Type targetType) : base(new PropertyCondition(), targetType)
9 references to PropertyCondition
Microsoft.Maui.Controls (8)
BindablePropertyConverter.cs (1)
56 else if (parentValuesProvider.TargetObject is PropertyCondition && parent is TriggerBase)
Interactivity\PropertyCondition.cs (1)
22 _stateProperty = BindableProperty.CreateAttached("State", typeof(bool), typeof(PropertyCondition), false, propertyChanged: OnStatePropertyChanged);
Interactivity\Trigger.cs (6)
22 get { return ((PropertyCondition)Condition).Property; } 25 if (((PropertyCondition)Condition).Property == value) 30 ((PropertyCondition)Condition).Property = value; 44 get { return ((PropertyCondition)Condition).Value; } 47 if (((PropertyCondition)Condition).Value == value) 52 ((PropertyCondition)Condition).Value = value;
Microsoft.Maui.Controls.Build.Tasks (1)
CompiledConverters\BindablePropertyConverter.cs (1)
39 || (node.Parent as ElementNode)?.XmlType.Name == nameof(PropertyCondition)))