如何在 C# 中设置文本框的 PasswordChar?
原文:https://www . geeksforgeeks . org/如何设置 c-sharp 中文本框的密码字符/
在 Windows 窗体中,文本框扮演着重要的角色。在文本框的帮助下,用户可以在应用程序中输入数据,可以是单行的,也可以是多行的。在文本框中,您可以借助文本框的 PasswordChar 属性在单行文本框控件中设置用于屏蔽密码字符的字符。设置属性后,不允许使用键盘在控件中使用剪切和复制操作。在 Windows 窗体中,可以通过两种不同的方式设置此属性:
1。设计时:设置文本框的 PasswordChar 属性是最简单的方法。如以下步骤所示:
- 步骤 1: 创建窗口表单。如下图所示: Visual Studio->File->New->Project->windows formapp
- 步骤 2: 从工具箱中拖动文本框控件,并将其放到窗口窗体上。您可以根据需要将文本框放置在 windows 窗体上的任何位置。如下图所示:
-
Step 3: After drag and drop you will go to the properties of the TextBox control to set the PasswordChar property of the TextBox. As shown in the below image:
输出:
2。运行时:比上面的方法稍微复杂一点。在此方法中,您可以借助给定的语法以编程方式设置文本框的 PasswordChar 属性:
public char PasswordChar { get; set; }
这里,该属性的值为系统。Char 类型和用于屏蔽单行文本框中输入的字符的字符。如果不希望控件在键入字符时屏蔽字符,则此属性值设置为 0(字符值)。此属性的默认值为等于 0(字符值)。以下步骤用于设置文本框的密码字符属性:
-
步骤 1 : 使用 textbox 类提供的 TextBox()构造函数创建一个 TextBox。
```cs // Creating textbox TextBox Mytextbox = new TextBox();
```
-
第二步:创建文本框后,设置文本框类提供的文本框的 PasswordChar 属性。
```cs // Set PasswordChar property Mytextbox2.PasswordChar = '^';
```
-
Step 3 : And last add this textbox control to from using Add() method.
```cs // Add this textbox to form this.Controls.Add(Mytextbox1);
```
示例:
```cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms;
namespace my {
public partial class Form1 : Form {
public Form1() { InitializeComponent(); }
private void Form1_Load(object sender, EventArgs e) { // Creating and setting the properties of Lable1 Label Mylablel1 = new Label(); Mylablel1.Location = new Point(96, 54); Mylablel1.Text = "Enter Name"; Mylablel1.AutoSize = true; Mylablel1.BackColor = Color.LightGray;
// Add this label to form this.Controls.Add(Mylablel1);
// Creating and setting the properties of TextBox1 TextBox Mytextbox1 = new TextBox(); Mytextbox1.Location = new Point(187, 51); Mytextbox1.BackColor = Color.LightGray; Mytextbox1.AutoSize = true; Mytextbox1.Name = "text_box1";
// Add this textbox to form this.Controls.Add(Mytextbox1);
// Creating and setting the properties of Lable1 Label Mylablel2 = new Label(); Mylablel2.Location = new Point(96, 102); Mylablel2.Text = "Enter Password"; Mylablel2.AutoSize = true; Mylablel2.BackColor = Color.LightGray;
// Add this label to form this.Controls.Add(Mylablel2);
// Creating and setting the properties of TextBox2 TextBox Mytextbox2 = new TextBox(); Mytextbox2.Location = new Point(187, 99); Mytextbox2.BackColor = Color.LightGray; Mytextbox2.AutoSize = true; Mytextbox2.PasswordChar = '^'; Mytextbox2.Name = "text_box2";
// Add this textbox to form this.Controls.Add(Mytextbox2); } } } ```
输出:
版权属于:月萌API www.moonapi.com,转载请注明出处