如何:在 Windows 窗体 TextBox 控件中选择文本
更新:2007 年 11 月
在 Windows 窗体 TextBox 控件中,可以通过编程方式选择文本。例如,如果创建一个可在文本中搜索特定字符串的函数,就可以选择那些文本,将找到的字符串的位置醒目地通报给读者。
以编程方式选择文本
将 SelectionStart 属性设置为要选择的文本的开始位置。
SelectionStart 属性是一个数字,它指示在文本字符串内的插入点,值为 0 表示最左边的位置。如果将 SelectionStart 属性设置为等于或大于文本框内的字符数,则插入点放在最后一个字符之后。
将 SelectionLength 属性设置为要选择的文本的长度。
SelectionLength 属性是一个设置插入点宽度的数值。如果将 SelectionLength 设置为大于 0 的数,则会从当前插入点处开始选择该数目的字符。
(可选)通过 SelectedText 属性访问选定的文本。
下面的代码将在控件的 Enter 事件发生时选择文本框的内容。TextBox1_Enter 事件处理程序必须绑定到控件;有关更多信息,请参见 如何:在运行时为 Windows 窗体创建事件处理程序。
Private Sub TextBox1_Enter(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.Enter TextBox1.SelectionStart = 0 TextBox1.SelectionLength = TextBox1.Text.Length End Sub
private void textBox1_Enter(object sender, System.EventArgs e){ textBox1.SelectionStart = 0; textBox1.SelectionLength = textBox1.Text.Length; }
private void textBox1_Enter(Object sender, System.EventArgs e) { textBox1.set_SelectionStart(0); textBox1.set_SelectionLength(textBox1.get_Text().get_Length()); }
private: void textBox1_Enter(System::Object ^ sender, System::EventArgs ^ e) { textBox1->SelectionStart = 0; textBox1->SelectionLength = textBox1->Text->Length; }
请参见
任务
如何:控制 Windows 窗体 TextBox 控件中的插入点
如何:使用 Windows 窗体 TextBox 控件创建密码文本框
如何:在 Windows 窗体 TextBox 控件中查看多个行