如何选择Windows窗体文本框中的所有文本
本文关键字:文本 窗体 Windows 何选择 选择 | 更新日期: 2023-09-27 18:26:18
我想选择文本框中包含的所有文本。
我已经用下面的代码尝试过了:
textBoxResults.SelectionStart = 0;
textBoxResults.SelectionLength = textBoxResults.Text.Length;
来源:我从这里得到了这个代码http://msdn.microsoft.com/en-us/library/vstudio/hk09zy8f(v=vs.100).aspx但由于某种原因,它似乎不起作用-的意思是,没有文本被选中。
您可以为此目的使用内置方法。
textBoxResults.SelectAll();
textBoxResults.Focus(); //you need to call this to show selection if it doesn't has focus
您也可以尝试以下方法来解决您的问题:
textBoxResults.SelectAll();
这适用于多行文本框。
此方法使您能够选择控件中的所有文本。
public void CopyAllMyText()
{
// Determine if any text is selected in the TextBox control.
if(textBox1.SelectionLength == 0)
// Select all text in the text box.
textBox1.SelectAll();
// Copy the contents of the control to the Clipboard.
textBox1.Copy();
}
查看此链接了解更多信息。http://msdn.microsoft.com/en-us/library/system.windows.forms.textboxbase.selectall.aspx