I am re-factoring my application to implement the MVVM design and i came across my first problem...
Compiler won't let me bind to the Password property of the PasswordBox control.
Anyone have any ideas / suggestions.
I am re-factoring my application to implement the MVVM design and i came across my first problem...
Compiler won't let me bind to the Password property of the PasswordBox control.
Anyone have any ideas / suggestions.
As it may be useful to others, this answer shows another possible solution for this problem: the idea there is to pass the PasswordBox
as a parameter to the command that handles the password validation so that its Password
property is accessible from there...