문제

In my WPF application using MVVM I noticed that in some cases the CanExecute part of a Command is not called, so I was wondering what decides when this (kind of) method is called?

도움이 되었습니까?

해결책

CanExecute is called by a control when it is told by raising the CanExecuteChanged event, how exactly controls handle Commands is up to them (they could for example also call it again when the CommandParameter changes), but if you want them to reevaluate CanExecute you should fire the event manually.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top