我有一個密碼框,我想獲取輸入數據以檢查驗證。對變量使用密碼箱的值
我passwordbox C#代碼
public void textBox2_TextInput(object sender, TextCompositionEventArgs e)
{
//pass = textBox2.ToString();
}
和XAML代碼
<PasswordBox Name="textBox2"
PasswordChar="*"
TextInput="textBox2_TextInput" />
這就是我寫捕獲密碼
private void loginbutton_Click(object sender, RoutedEventArgs e)
{
usr = textBox1.Text;
SecureString passdat =textBox2.SecurePassword;
pass = passdat.ToString();
}
返回null.This是虛擬演示,因此不需要加密。我之前使用了一個文本框,驗證工作正常。使用密碼b牛隻是複雜的東西。
它工作。非常有用的感謝 – 2016-03-18 02:20:18