在ListBox中设置DrawMode删除水平滚动条
我将列表框控件中的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该在 OwnerDrawFixed 模式下设置列表框的 HorizontalExtent 属性
要确定应设置 HorizontalExtent 的值,请对列表框中的字符串使用以下方法并获取 Width 属性:
将 HorizontalExtent 设置为 MeasureText 返回的最大宽度值
you should set HorizontalExtent property of listbox in OwnerDrawFixed mode
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:
Set HorizontalExtent to the largest Width value that MeasureText returns
您必须使用
ListBox。 MeasureItem
事件。请参阅 msdn 页面中的示例。You'll have to use
ListBox.MeasureItem
event. See the example in msdn page.