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