选择 Winforms Infragistics 组合框中的所有文本
有没有办法做到这一点? 我想模仿 Windows 窗体中 UltraTextBox.SelectAll 方法的行为。
Is there a way to do this? I want to mimic the behavior of a the UltraTextBox.SelectAll method in windows forms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想提供 Infragistics Library 的确切版本...
是否
this.UltraCombo1.TextBox.SelectAll()
能满足您的要求?
You might want to provide the exact version of Infragistics Library...
Does
this.UltraCombo1.TextBox.SelectAll()
do what you want?
我认为你的问题是你将 HideSelection 设置为 true。 如果您将其设置为 false,则 textBox1.SelectAll 将按您的预期运行...或者,您需要在调用 SelectAll() 之前将焦点集中到文本框。
我不确定 SelectAll 如何适用于 UltraTextBox,但我认为它只是选择文本框中的所有文本。
I think your problem is that you have HideSelection set to true. If you set this to false then textBox1.SelectAll will function as you expect...alternatively you need to give focus to your textbox before calling SelectAll().
I'm not sure how SelectAll works for UltraTextBox but I presume it just selects all the text in the textbox.