I was creating a form with a password box and was getting an error when I was trying to bind it to a property in my view model.
I did a bit of research and found out that because of security reasons it was made not bindable. I am not really a person who can just accept that, I want to know the reason why. What makes naming the property and calling .password more secure than it being bound to a property in the view model?
I also found out that you can use attached properties to make it bindable. Is this any more secure?