public DelegateCommand( Predicate<T>? canExecuteCallback, Action<T>? executeCallback )
Public Sub New ( canExecuteCallback As Predicate(Of T), executeCallback As Action(Of T) )
public ICommand EditCommand { get { return new DelegateCommand<Item>(CanEdit, Edit); } } public bool CanEdit(Item param) { .....
© tom-englert.de 2012-2023