在ListBox中设置DrawMode删除水平滚动条

发布于 2024-11-14 04:09:12 字数 107 浏览 4 评论 0原文

我将列表框控件中的 DrawMode 设置为 OwnerDrawFixed,以便可以为某些项目着色。当项目太长而无法容纳列表框的水平空间时,不会出现水平滚动。

怎样才能让滚动条出现呢?

I set the DrawMode in my listbox control to OwnerDrawFixed so that I can color some items. When an item is too long to fit in the horizontal space of the list box no horizontal scoll appears.

How can I make the scrollbar appear?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

爱给你人给你 2024-11-21 04:09:13

您应该在 OwnerDrawFixed 模式下设置列表框的 Horizo​​ntalExtent 属性

    listBox1.HorizontalExtent = xx; //xx can be maximum size list box item fills

要确定应设置 Horizo​​ntalExtent 的值,请对列表框中的字符串使用以下方法并获取 Width 属性:

TextRenderer.MeasureText(text, listBox1.font)

将 Horizo​​ntalExtent 设置为 MeasureText 返回的最大宽度值

you should set HorizontalExtent property of listbox in OwnerDrawFixed mode

    listBox1.HorizontalExtent = xx; //xx can be maximum size list box item fills

To determine the value that HorizontalExtent should be set to use the following method on the the strings in your list box and get the Width property:

TextRenderer.MeasureText(text, listBox1.font)

Set HorizontalExtent to the largest Width value that MeasureText returns

漫漫岁月 2024-11-21 04:09:13

您必须使用 ListBox。 MeasureItem 事件。请参阅 msdn 页面中的示例。

You'll have to use ListBox.MeasureItem event. See the example in msdn page.

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