So in WPF it seems I can't create a TextBox with a password character and the PasswordBox I don't see a way to unhide the password.
I have tried the following that I use in WinForms on a TextBox in WPF and no luck. Is there any way to do this?
PasswordBox.PasswordChar = (char)0
Just to add some detail on what i'm doing that needs this. I have an application that contains many credentials for many different systems and devices. A user that needs access to these because I don't have a way to automatically send them to the device clicks a request button that logs the user having access to them and then displays it to the user.
I currently have them displayed in a messagebox but this doesn't allow the user to copy/paste crazy passwords if needed. Although I know that can be a security issue as well. Just trying to make it easy to use by the support staff.