示例#1
0
 public MultiCondition()
 {
     _aggregatedStateProperty = BindableProperty.CreateAttached("AggregatedState", typeof(bool), typeof(MultiCondition), false, propertyChanged: OnAggregatedStatePropertyChanged);
     Conditions = new TriggerBase.SealedList <Condition>();
 }
示例#2
0
 public XamlPropertyCondition()
 {
     stateProperty = BindableProperty.CreateAttached("State", typeof(bool), typeof(XamlPropertyCondition), false, propertyChanged: OnStatePropertyChanged);
 }
示例#3
0
 public BindingCondition()
 {
     boundProperty = BindableProperty.CreateAttached("Bound", typeof(object), typeof(BindingCondition), null, propertyChanged: OnBoundPropertyChanged);
 }