[C#][控件]文本类控件

文本控件

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像素

上一篇:Glide 简单流程分析


下一篇:Android “奥利奥”终于出炉,吃了它你的手机将获得超能力!