0

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();

TextBox に入力されたテキストを読み取ることができません

次の行を使用して値を読み取っています

string text = PasswordBox.Text;

これは、パスワード フィールドを読み取る正しい方法ですか。

4

1 に答える 1

1

はいtext = passwordBox.Text;、あなたがそれを得ることができる唯一の方法です!

于 2012-05-05T07:17:36.093 に答える