Bilal - Mohummed Ibrahim
Results
2
comments of
Bilal - Mohummed Ibrahim
I think you'll need to call the `IRelayCommand.NotifyCanExecuteChanged()` for the `CanExecute` to observe the status changes. i.e. something like this. ``` private void ExecuteDisableCommand() { IsEnabled = false; MyCommand.NotifyCanExecuteChanged(); }...
[Feature Request] Add a type that tokenizes the string once, and reuse it for processing parameters.
Thanks for the quick response! Yes, `FormattableWith()` seems to be helpful when we need to inspect the parameters or need some custom formatting, but I don't see if we can...