文本控件
1. TextBox
1.1 创建密码文本框
eg:
textBox1.UseSystemPasswordChar = true;
textBox1.PasswordChar = '*';
1.2 突出显示文本框文本
eg:
textBox1.Text = "大江东去,浪淘尽,千古风流人物";
textBox1.SelectionStart = 3; //从位置3开始选择
textBox1.SelectionLength = 5; //选择5个字符
2. RichTextBox
2.1
richTextBox1.SelectionIndent = 8; //使控件的左边缘与文本的左边缘间的距离为8像素
1. TextBox
1.1 创建密码文本框
eg:
textBox1.UseSystemPasswordChar = true;
textBox1.PasswordChar = '*';
1.2 突出显示文本框文本
eg:
textBox1.Text = "大江东去,浪淘尽,千古风流人物";
textBox1.SelectionStart = 3; //从位置3开始选择
textBox1.SelectionLength = 5; //选择5个字符
2. RichTextBox
2.1
richTextBox1.SelectionIndent = 8; //使控件的左边缘与文本的左边缘间的距离为8像素
richTextBox1.SelectionRightIndent = 12; //使控件的右边缘与文本的右边缘间的距离为12像素
本文转自静默虚空博客园博客,原文链接:http://www.cnblogs.com/jingmoxukong/articles/2128848.html,如需转载请自行联系原作者