Windows 列表框中禁用水平滚动条

发布于 2024-10-27 19:34:15 字数 294 浏览 0 评论 0原文

嗯,我以为我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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烈酒灼喉 2024-11-03 19:34:15

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文