ListView OwnerDraw 项目的高度
我有一个包含 OwnerDraw = true 和详细信息视图模式的列表视图。 我希望当列表包含 3,4 或 5 个项目时,每个项目的高度为 listview.Height/3 ,4 或 5 而不滚动。
我知道项目的高度取决于字体的大小。
这不起作用
listView.Font = new Font("Arial", listView.Height / nOfItems);
我在 DrawItem 事件中以恒定的字体大小绘制文本:e.Graphics.DrawString(....)。
I have a listview with OwnerDraw = true and Details view mode.
I want when the list contains 3,4 or 5 items the height of each item to be listview.Height/3 ,4 or 5 without scrolling.
I know that the height of item depends on size of the font.
This doesn't work
listView.Font = new Font("Arial", listView.Height / nOfItems);
I draw the text at DrawItem event with constant font size: e.Graphics.DrawString(....).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我成功做的是通过分配具有我想要的适当高度的虚拟图像的图像列表来调整列表视图的高度。
例如,为了使每行的高度为 40 像素,我将高度为 40 像素的图像分配给图像列表内的列表视图。
您不必实际绘制图像,分配它并进行所有者绘制就足够了。它看起来像 这个截图(这是我用.NET编写的CMS)。
What I do successfully is to adjust the height of the list view by assigning an image list with a dummy image with the appropriate height I want to have.
So e.g. to have rows with each 40 pixel high, I assign an image with 40 pixel height to the list view inside an image list.
You do not have to actually draw the image, it is sufficient to assign it and do owner drawing then. It looks like e.g. the list in the background of this screenshot (it is a CMS I wrote in .NET).
你说得对。
实际上,当您更改 ImageList 中的 ImageSize 属性时,我看到 ImageList 变空了。因此,对于您的问题,您必须再次用所需的 ImageSize 重新填充 ImageList 。尝试一下它可以解决你的问题。
you r right.
actually when you change the ImageSize property in ImageList, i have seen the ImageList goes empty. so for your problem You have to refill the ImageList with desire ImageSize again. try it it could solve your problem.