使用 C# 增加列表视图中子项目的字符限制
我想知道是否可以增加列表视图子项文本的字符限制..有 259 个字符的限制.. 任何想法将不胜感激..
问候,
I was wondering if its possible to increase the character limit of listview's subitems text.. there is a limitation of 259 characters..
any ideas would be appreciated..
regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里有一些建议。不幸的是,它有一个限制,不能超过。
http://social.msdn.microsoft .com/Forums/en/csharplanguage/thread/aad539a5-1b9f-4880-8b8e-59d4630706ab
1)您可以尝试使用子项目来换行文本。项目限制为 259 个字符,因此请将对象分成多个项目。
2)唯一可能的解决方案是使用您自己的或模仿 ListView 但不是从中派生的第三方组件。
There are some suggestions here. Unfortunately, there is a limit on it which can't be exceeded.
http://social.msdn.microsoft.com/Forums/en/csharplanguage/thread/aad539a5-1b9f-4880-8b8e-59d4630706ab
1) You could try sub items to wrap the text. The item limit is 259 characters, so break the objects into multiple items.
2) the only possible solution is to use your own or a third-party component which mimics a ListView but is not derived from it.
这可能可以帮助您:
.NET ListView,最大字符数或最大列宽?可以覆盖/扩展吗?
下面是专门帮助您创建自己的列表视图的代码:
This may be able to help you:
.NET ListView, max number of characters, or maximum column width? Possible to override/expand?
Here's the code specifically to help you create your own listview:
只需检查 objectlistview 是否支持此功能。
Just check if objectlistview supports this.