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