自定义CListCtrl
我需要在 MFC 中创建一个 ListControl,每行具有不同的列数。 我该怎么做?
I need to create a ListControl in MFC, each row having different number of columns.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
那是不可能的。解决方法很简单,只需不要在子项中放置任何文本即可。
That's not possible. The workaround is trivial, just don't put any text in the sub-item.
您可以参考我的大师(Chris Maunder-Codeproject创始人)的文章:
http://www.codeproject.com/KB/miscctrl/gridctrl.aspx
You may refer to my guru's(Chris Maunder-Codeproject founder) article:
http://www.codeproject.com/KB/miscctrl/gridctrl.aspx
您可以使用自定义绘制列表控件。然后,您可以指定控件的最大列数,但在每行中仅绘制指定数量的列。您可以使用背景颜色填充不需要的列。 下面是示例创建自定义绘制列表控件。
You could use custom-draw List Control. Then you can specify maximum columns for the control, but draw only specified number of columns in each row. You can fill unwanted columns with a background color. Here's a sample of how you could create custom-draw list control.