Windows 移动 (MFC)。 CListView 用按钮而不是通常的字符串?
我不知道如何实现这个功能。
我的临时解决方案是放置固定数量的可见CBitmapButton和滚动条。然后,我处理滚动条位置的更改并选择放置按钮的适当外观。
i have no idea how to realize this feature.
My temporary solution is to place a fixed number of visible CBitmapButton and a scrollbar. Then I handle the scrollbar position changing and choose the appropriate appearance of the placed buttons.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于普通(非移动)MFC,答案是将 CListView 置于图标模式 (LVS_ICON),并使用带有位图的 CImageList。这提供了 32x32 图标,还有适用于 16x16 图标的 LVS_SMALLICON 模式。这些选项也可用于移动设备。
With normal (not Mobile) MFC, the answer would be to put the CListView into Icon mode (LVS_ICON), and use an CImageList with the bitmaps. This offers 32x32 icons, and there is also a LVS_SMALLICON mode for 16x16 icons. These options may also be available for Mobile.