You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets or sets the bound object that the <see cref="BindingTriggerBehavior"/> will listen to. This is an avalonia property.
40
+
/// </summary>
41
+
[AssignBinding]
42
+
publicIBinding?Binding
43
+
{
44
+
get=>GetValue(BindingProperty);
45
+
set=>SetValue(BindingProperty,value);
46
+
}
47
+
48
+
/// <summary>
49
+
/// Gets or sets the type of comparison to be performed between <see cref="BindingTriggerBehavior.Binding"/> and <see cref="BindingTriggerBehavior.Value"/>. This is an avalonia property.
50
+
/// </summary>
51
+
publicComparisonConditionTypeComparisonCondition
52
+
{
53
+
get=>GetValue(ComparisonConditionProperty);
54
+
set=>SetValue(ComparisonConditionProperty,value);
55
+
}
56
+
57
+
/// <summary>
58
+
/// Gets or sets the value to be compared with the value of <see cref="BindingTriggerBehavior.Binding"/>. This is an avalonia property.
0 commit comments