public INodeEditorConfig <TDetailEntity> AddCustomButton <TActionHandler>(Type buttonType, string?label = null, string?icon = null, Func <IEntity, EntityState, bool>?isVisible = null)
     where TActionHandler : IButtonActionHandler
 => _detailNodeEditor.AddCustomButton <TActionHandler>(buttonType, label, icon, isVisible);
Exemple #2
0
 public INodeEditorConfig <TDetailEntity> AddCustomButton <TActionHandler>(Type buttonType, string?label = null, string?icon = null)
     where TActionHandler : IButtonActionHandler
 => _detailNodeEditor.AddCustomButton <TActionHandler>(buttonType, label, icon);