如何在 TCheckListBox 上使用多列?

发布于 2024-08-20 13:58:58 字数 185 浏览 4 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清秋悲枫 2024-08-27 13:58:58

使用TCheckListBox 不可能做到这一点。

但是您可以使用 TListView

ViewStyle 属性设置为 vsReport,并将 Checkboxes 设置为 True

要创建列并添加项目:

procedure TFormMain.Button1Click(Sender: TObject);
var
  Item1, Item2: TListItem;
begin
  ListView1.Columns.Add.Caption := 'aa';
  ListView1.Columns.Add.Caption := 'bb';

  Item1 := ListView1.Items.Add;
  Item1.Caption := 'item1';
  Item1.SubItems.Add('subitem1');

  Item2 := ListView1.Items.Add;
  Item2.Caption := 'item2';
  Item2.SubItems.Add('subitem2');
  Item2.Checked := True;
end;

看起来像:

带有复选框的列表视图 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 to vsReport and Checkboxes to True.

To create the columns and add the items:

procedure TFormMain.Button1Click(Sender: TObject);
var
  Item1, Item2: TListItem;
begin
  ListView1.Columns.Add.Caption := 'aa';
  ListView1.Columns.Add.Caption := 'bb';

  Item1 := ListView1.Items.Add;
  Item1.Caption := 'item1';
  Item1.SubItems.Add('subitem1');

  Item2 := ListView1.Items.Add;
  Item2.Caption := 'item2';
  Item2.SubItems.Add('subitem2');
  Item2.Checked := True;
end;

Looks like:

list view with checkboxes http://img638.imageshack.us/img638/4681/clipboard01y.png

时光是把杀猪刀 2024-08-27 13:58:58

我可能是错的,但我认为这些列是用于换行而不是用于格式化目的。

例如,

将列数设置为 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文