Wep4ik
Results
1
comments of
Wep4ik
Here is a simply example from WPF. ` ` and code from vm ` [RelayCommand(CanExecute = nameof(CanDoSomething))] private void DoSomething(string te) { } private bool CanDoSomething(string te) => !string.IsNullOrWhiteSpace(te); `...