Propagate Changes to WPF
I'm using WPF with Unity Container and Prism. I've got a save button which is supposed to activate once I have data. I log
MyCommand.CanExecute()
which is true but it remains disabled in the GUI.
MyCommand.RaiseCanExecuteChange()
does not exist in Prism. (Or at least can't be resolved)1 Reply
The Data lives in an
ObservableCollection<MyData>
and updates itself in the GUI (Grid and Plot) without issues.