Windows 列表框中禁用水平滚动条
嗯,我以为我15年前就已经问完了这类问题。
是什么导致 Windows 列表框中的水平滚动条被禁用?以下是控件定义:
LISTBOX IDC_FOOBAR,6,6,100,60,LBS_SORT | LBS_NOINTEGRALHEIGHT | LBS_DISABLENOSCROLL | WS_VSCROLL | WS_TABSTOP | WS_HSCROLL
列表框包含一些比可以显示的长得多的项目。水平滚动条可见但被禁用。垂直滚动条很好。什么给?
TIA。
Well, I thought I was finished with this kind of question 15 years ago.
What causes the horizontal scrollbar in a Windows listbox to be disabled? Here's the control definition:
LISTBOX IDC_FOOBAR,6,6,100,60,LBS_SORT | LBS_NOINTEGRALHEIGHT | LBS_DISABLENOSCROLL | WS_VSCROLL | WS_TABSTOP | WS_HSCROLL
The listbox contains some items that are much longer than can be displayed. The horizontal scrollbar is visible but disabled. The vertical scrollbar is fine. What gives?
TIA.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要设置列表框宽度的逻辑宽度 LB_SETHORIZONTALEXTENT< /a>.只要客户端宽度大于此值,水平滚动条就会被禁用。
You need to set the logical width of the listbox width LB_SETHORIZONTALEXTENT. The horizontal scrollbar is disabled as long as the client width is more than this value.