从文本框读取密码
本文关键字:密码 读取 文本 | 更新日期: 2023-09-27 18:33:19
我在 C# 中创建了一个密码字段,如下所示
public System.Windows.Forms.TextBox passwordBox;
为此字段进行的其他设置包括
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.CornflowerBlue;
this.ClientSize = new System.Drawing.Size(381, 199);
this.Controls.Add(this.button1);
this.Controls.Add(this.panel1);
this.Controls.Add(this.label1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Progpassword";
this.Text = "Programmer Password";
this.TransparencyKey = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
this.Load += new System.EventHandler(this.Progpassword_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
我无法阅读文本框中输入的文本
我正在使用以下行读取值
string text = PasswordBox.Text;
这是读取密码字段的正确方法吗?
是的,text = passwordBox.Text;
只有这样才能得到它!