如何将光标移动到组合框中的左侧?
我想将光标移至 ComboBox
中文本的开头。
这是目前的样子:
我确实在 Closed Event 上尝试了以下操作
:
cboSomeCombo.Select(cboSomeCombo.Text.Length, 0);
光标仍然保持在右侧。
I would like to move my cursor to the start of the text in my ComboBox
.
This is what it looks like at the moment:
I did try the following on the Closed Event
:
cboSomeCombo.Select(cboSomeCombo.Text.Length, 0);
The cursor still stays all the way to the right.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这似乎是相关的:
如何设置选定的文本组合框左对齐
This seems to be related:
How to set the selected text of combobox align left