I have a situation where I need to communicate from a ViewModel to View in case a change happens. The problem here is, the property I want to update does not have a DependencyProperty, and I have managed to get a way around to "bind (not really but..)" it from View to VM by breaking a little the MVVM pattern rules and simply adding in the code-behind an event:
(ViewModelSomething as DataContext).Password = pb.Password;
And this works. The problem is when I want to update this property on a View when a change happens in the VM. Is there even possible a such connection?