Beispiel #1
0
 private async Task execIfCan(IBindingItem bi)
 {
     if (bi.CanCallCommand())
     {
         await bi.Exec();
     }
 }
Beispiel #2
0
 public void Add(IBindingItem item)
 {
     bindings.Add(new BindingItemWithLastValue(item, item.CanCallCommand()));
 }