1 instantiation of BindingCondition
Microsoft.Maui.Controls (1)
Interactivity\DataTrigger.cs (1)
15
public DataTrigger([System.ComponentModel.TypeConverter(typeof(TypeTypeConverter))][Parameter("TargetType")] Type targetType) : base(new
BindingCondition
(), targetType)
7 references to BindingCondition
Microsoft.Maui.Controls (7)
Interactivity\BindingCondition.cs (1)
20
_boundProperty = BindableProperty.CreateAttached("Bound", typeof(object), typeof(
BindingCondition
), null, propertyChanged: OnBoundPropertyChanged);
Interactivity\DataTrigger.cs (6)
22
get { return ((
BindingCondition
)Condition).Binding; }
25
if (((
BindingCondition
)Condition).Binding == value)
30
((
BindingCondition
)Condition).Binding = value;
44
get { return ((
BindingCondition
)Condition).Value; }
47
if (((
BindingCondition
)Condition).Value == value)
52
((
BindingCondition
)Condition).Value = value;