Closed. This question needs details or clarity。它当前不接受答案。












想改善这个问题吗?添加详细信息,并通过editing this post阐明问题。

7年前关闭。



Improve this question




我想选择文本框中包含的所有文本。

我已经尝试使用下面的代码:
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

10-04 22:35