I agree with Ilian - this does seem like a good use case for MVVM Light's Messenger, or equivalent for whatever MVVM framework you are using, (or none). In a nutshell, we want to implement a mediator pattern to communicate to your view.
I provide a good example and overview on this, and another alternative by using a IViewService that the View provides to its ViewModel..
(DataTriggers would be another possible approach, but your question lacks some details on how your view is constructed, data bound, etc.)