如何在.net紧凑框架中删除列表视图中的水平滚动条
我在开发 Windows Mobile 5.0 应用程序时使用 listview。 当项目添加到末尾时,它会显示垂直和水平滚动条。 如何去掉水平滚动条?
i am using listview while developing windows mobile 5.0 application. When items are added at the end it shows vertical as well as horizontal scrollbar. How can remove horizontal scrollbar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需调整Listview的宽度即可。
也就是说,如果您有一个宽度为 50 的列表视图并且有五列。 列的宽度总和应小于或等于 45。因此您可以在末尾得到 5 并且不显示水平滚动。 仅当拖动标题时水平滚动才可见。
Just adjust the width of Listview.
That is if you have a list view with width 50 and there is five columns. The sum of widths of columns should be less than or equal to 45. So you can get a 5 at end and the horizontal scroll is not shown. Horizontal scroll is only visible if u drag a header.