WPF Password


获取 PasswordBox 中密码的代码如下:

// 使用一个IntPtr类型值来存储加密字符串的起始点  
IntPtr p = System.Runtime.InteropServices.Marshal.SecureStringToBSTR(this.passwordBoxPassword.SecurePassword);  
      
// 使用.NET内部算法把IntPtr指向处的字符集合转换成字符串  
string password = System.Runtime.InteropServices.Marshal.PtrToStringBSTR(p);