问题标签 [tchecklistbox]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
delphi - 如何在 TCheckListBox 上使用多个列?
我正在使用 TcheckListBox 控件并希望在此使用第二列,但除了 Columns 和 Header 属性之外,我在插入多列内容时找不到任何来源...
它可能看起来像一个菜鸟问题,但 Delphi 的帮助没有任何内容,而且我的搜索(在 Google 和 SO 上)带来了很多垃圾......
我只需要一个例子。
delphi - How do I make a TCheckListBox scroll vertically?
I've got a TCheckListBox on a form. Its Columns property is set to 2, and if there are more items than can fit on-screen in two columns, it puts a horizontal scrollbar across the bottom of the control.
Thing is, the way this form it laid out, it would be much more convenient to scroll vertically. But I can't seem to figure out how to make the box do that. I thought setting Columns to 1 should work, but it doesn't.
Anyone know how to make a TCheckListBox scroll vertically instead of horizontally?
delphi - 从 TCheckListBox 到 TcxCheckListBox 有异常?
我将此代码与 TCheckListbox (lbServices) 一起使用,它工作正常。但是使用 Devexpress 的 TcxCheckListBox 会引发异常。
如果我调试代码 lbServices.Count = 12。对于列表中的所有项目,lbServices.Items.Objects[i] 为零。这里有什么问题?
vb.net - 无法从我在 vb.net 中的选中列表框中输出
我只是在学习 vb,在我的文本框中输出特定的选中项目时遇到了一些问题。我尝试了很多方法,但仍然无法找到正确的方法,也许我忘记了什么?
ubuntu-12.04 - (Ubuntu) Lazarus TCheckListBox OnDraw 何时发生?
目标:我试图使 TCheckListBox 控件上的前 3 个项目以粗体显示。lstMenuPermissions 是我的控制。
所以我尝试了这个:
没有效果,所以我想首先检查事件是否被触发,我尝试了这个:
我还将 Style 设置为lbOwnerDrawFixed。
但是没有消息框。所以我猜这个事件没有触发。也许我做错了什么。请告知我应该如何解决这个问题。
谢谢!
delphi - 在 Delphi 上限制 TCheckListBox 的选中项
我想限制一个 TCheckListBox。我希望只检查 2 个项目,所有未选中的项目都将被禁用并变灰。由于选中/未选中的项目是动态的,我不能使用静态 itemIndex。
这是我尝试过的,但出现“超出芯片范围”错误。
在我的 CheckListBox 的点击事件上;
delphi - TCheckListBox 奇怪的行为,不显示第一个字符
所以我有一个包含 6 个项目的 CheckListBox :
如果我想在 ShowMessage 对话框中显示它们,则打印的消息是。
我使用的程序是这样的。
为什么我无法从我的项目中获取第一个字符?
delphi - Delphi 列表框数组
我想将二进制代码更改为复选框。当 1checklistbox.checked = true
时 , 0时checklistbox.checked = false
。我在清单框中有 5 个项目。当 Tedit 填充 11111 和 00000 时,它工作得很好。但是,当我输入 11011 时,取消选中第四项,而不是第三项。
这是我的代码,
非常感谢您。
c++builder - TCheckListBox 获取计数检查项
我有一个简单的问题。如何在不使用循环的情况下获取 CheckBoxListBox 中选中项目的计数?
delphi - 在 Delphi 中,如何使按钮出现在 TCheckListBox 的顶部?
我们想要一个带有复选框和格式化文本的列表框。我们使用TCheckListBox
所有者绘制模式来实现这一点。
但我们还希望在所选行的右端出现一个按钮。仅添加一个带有 CheckListBox 的按钮 ( TSpeedButton
) 作为 Parent 并不能正确绘制。
有谁知道如何做到这一点?