1 instantiation of PropertyCondition
Microsoft.Maui.Controls (1)
Interactivity\Trigger.cs (1)
13
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)
20
_stateProperty = BindableProperty.CreateAttached("State", typeof(bool), typeof(
PropertyCondition
), false, propertyChanged: OnStatePropertyChanged);
Interactivity\Trigger.cs (6)
20
get { return ((
PropertyCondition
)Condition).Property; }
23
if (((
PropertyCondition
)Condition).Property == value)
28
((
PropertyCondition
)Condition).Property = value;
42
get { return ((
PropertyCondition
)Condition).Value; }
45
if (((
PropertyCondition
)Condition).Value == value)
50
((
PropertyCondition
)Condition).Value = value;
Microsoft.Maui.Controls.Build.Tasks (1)
CompiledConverters\BindablePropertyConverter.cs (1)
39
|| (node.Parent as ElementNode)?.XmlType.Name == nameof(
PropertyCondition
)))