真的是这样。。
我正在使用 VS2008 Express。
所有示例都说只是设置 PasswordChar,但没有任何内容被屏蔽。
我还尝试设置“UseSystemPasswordChar”= true .. 不走运..
// Set to no text.
textBox1.Text = "";
// The password character is an asterisk.
textBox1.PasswordChar = '*';
// The control will allow no more than 14 characters.
textBox1.MaxLength = 14;
我使用 TextBox 的原因是因为我希望用户能够点击返回并提交数据。重要的是要注意我猜我有 MultiLine = true 以便我可以捕获返回。
我似乎无法使用 maskedTextBox 捕获返回。我得到的只是系统提示音。
任何一个的解决方案对我来说都很好!