コード例 #1
0
ファイル: MultiCondition.cs プロジェクト: walac/NUIPreview
 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
ファイル: BindingCondition.cs プロジェクト: yunmiha/TizenFX
 public BindingCondition()
 {
     boundProperty = BindableProperty.CreateAttached("Bound", typeof(object), typeof(BindingCondition), null, propertyChanged: OnBoundPropertyChanged);
 }