1 instantiation of BindingCondition
Microsoft.Maui.Controls (1)
Interactivity\DataTrigger.cs (1)
13
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)
18
_boundProperty = BindableProperty.CreateAttached("Bound", typeof(object), typeof(
BindingCondition
), null, propertyChanged: OnBoundPropertyChanged);
Interactivity\DataTrigger.cs (6)
20
get { return ((
BindingCondition
)Condition).Binding; }
23
if (((
BindingCondition
)Condition).Binding == value)
28
((
BindingCondition
)Condition).Binding = value;
42
get { return ((
BindingCondition
)Condition).Value; }
45
if (((
BindingCondition
)Condition).Value == value)
50
((
BindingCondition
)Condition).Value = value;