在虚拟模式列表视图中使用复选框

发布于 2024-12-12 03:08:44 字数 258 浏览 2 评论 0原文

我正在学习制作虚拟模式列表视图。到目前为止,我的问题是我无法在列表视图中使用复选框。我已经阅读了 http://delphi 的链接-kb.blogspot.com/2011/02/draw-checkboxes-in-virtual-mode.html 但我没有看到任何复选框。有什么想法吗?

I am learning to make virtual mode listview. So far my problem is I can not use checkbox in the listview. I already read a link from http://delphi-kb.blogspot.com/2011/02/draw-checkboxes-in-virtual-mode.html but I don't see any checkbox. Any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

番薯 2024-12-19 03:08:44

显然,当启用 OwnerData 时,您必须自己绘制复选框(如问题中链接的文章中所述)。

因此,您必须将 OwnerDraw 设置为 True(除了 OwnerData 之外,这两个是独立标志!)并且在 OnCustomDrawItem 事件中自行绘制复选框。

更新:

这似乎并不完全正确,在 OwnerDraw = False 的情况下也会触发 OnCustomDrawItem 事件。

http://docwiki.embarcadero.com/VCL/XE2/en/ComCtrls .TListView.OnCustomDrawItem

更新 2:

问题中链接的代码仅在 OwnerDraw = FalseCheckBoxes = True

否则,VCL 不会在左侧保留空间来绘制复选框。

顺便说一句:您可能最好使用更高级的组件,例如 Mike Lischke 的 TVirtualTreeView。

Apparently you have to draw the CheckBoxes yourself when OwnerData is enabled (as mentioned in the article linked in the question).

So you have to set OwnerDraw to True (in addition to OwnerData, the two are independed flags!) and draw the CheckBoxes yourself in the OnCustomDrawItem event.

Update:

It seems that this is not entirely true, the OnCustomDrawItem event is also fired in the case OwnerDraw = False.

http://docwiki.embarcadero.com/VCL/XE2/en/ComCtrls.TListView.OnCustomDrawItem

Update 2:

The code linked in the question only works when OwnerDraw = False and CheckBoxes = True.

Otherwise the VCL doesn't reserve space on the left to draw CheckBoxes.

BTW: You might be better of using a more advanced component like TVirtualTreeView from Mike Lischke.

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