MFC框架中的ListBox是否有项目长度限制?
MFC框架中的ListBox是否有项目长度限制?如果可以,限制是多少?
Dose the ListBox in MFC framework have limited item length? If so, what is the limit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个限制。对于业主绘制的,这可能与GDI坐标系的限制有关。
然而,早在达到 ListBox 限制之前,您就达到了良好 UI 的限制。宽水平可滚动列表框不容易使用。如果要公开的数据非常广泛,请考虑其他 UI 抽象,例如树或多列列表,并考虑用户实际需要查看哪种数据。
马丁
There is a limit. For an owner draw one it's probably related to the limits of the GDI coordinate system.
However, long before you reach the ListBox limit, you reach the limit of good UI. Wide horizontally scrollable listboxes aren't easy to use. If you have very wide data to expose, consider another UI abstraction, like a tree or multicolumn list, and consider what kind of data your user actually needs to see.
Martyn