Ejemplo n.º 1
0
 public ButtonSetup?FindButton(string buttonId)
 => EnumerableExtensions
 .MergeAll(
     ListView?.GetAllButtons(),
     ListEditor?.GetAllButtons(),
     NodeView?.GetAllButtons(),
     NodeEditor?.GetAllButtons())
 .FirstOrDefault(x => x.ButtonId == buttonId);