示例#1
0
 public AutocloseActionableItem(IActionableItem item, Action collapseParent)
 {
     _item   = item;
     Command = ReactiveCommand.CreateFromTask(async() =>
     {
         collapseParent();
         await item.OnExecution();
     });
 }