如何在 TCheckListBox 上使用多列?
我正在使用 TcheckListBox 控件,并且想在此使用第二列,但除了列和标题属性之外,我找不到任何关于插入多列内容的源...
它可以看起来就像一个菜鸟问题,但是Delphi的帮助没有任何关于此的内容,并且我的搜索(在Google和SO上)带来了很多垃圾......
我只需要一个例子。
I'm using the TcheckListBox control and would like to use a second column on this, but besides the Columns and Header properties, I could not find any source on inserting the multicolumn contents...
It can look like a noobie question, but Delphi's help doesn't have any content on this, and my searches (on Google and SO) brought much garbage...
I just need an example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
TCheckListBox
不可能做到这一点。但是您可以使用
TListView
。将
ViewStyle
属性设置为vsReport
,并将Checkboxes
设置为True
。要创建列并添加项目:
看起来像:
带有复选框的列表视图 http://img638.imageshack.us/img638/4681/剪贴板01y.png
This is not possible using a
TCheckListBox
.But you could use a
TListView
.Set the
ViewStyle
property tovsReport
andCheckboxes
toTrue
.To create the columns and add the items:
Looks like:
list view with checkboxes http://img638.imageshack.us/img638/4681/clipboard01y.png
我可能是错的,但我认为这些列是用于换行而不是用于格式化目的。
例如,
将列数设置为 2
添加 3 或 4 项
垂直调整框的大小,您将看到项目流动以填充列
I could be wrong but I thought the columns were for wrapping rather than for formatting purposes.
eg,
Set the number of columns to 2
Add 3 or 4 items
Resize the box vertically and you'll see the items flow to fill the columns