如何创建一个结合CheckedListBox和详细ListView的显示?
我正在尝试创建这样的东西:
这个 示例 使用制表符作为条目之间的间距。它的缺陷是我可能会遇到太长的条目,我不知道它在我的情况下会如何表现。
如何在 C# 中创建类似的东西?我想使用 ListView,但后来我还需要一个复选框,所以我尝试了 CheckedListBox,但后来我无法创建列。
我怎样才能创造出两者结合的东西?
I am trying to create something like this:
This example creates view using a tabbing as spacing between entry. The flaw about it is that I might experience too long entries which I don't know how it might behave in my situation.
How can I create something similar in C#? I wanted to use ListView, but then I need a check box also, so I tried CheckedListBox, but then I can not create columns.
How can I create something that is a combination of two?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用启用复选框的
ListView
时会出现什么问题?ListView.CheckBoxes 属性
what is the problem in using a
ListView
for which you enable the Checkboxes?ListView.CheckBoxes Property
如果您使用 -2 作为宽度在列表视图中创建列,则列的大小将自动调整。
例如:
If you create your columns in the list view using -2 as the width, the columns will be automatically sized.
For example: