您好 我想实现一个使用已检查列表框的算法 我需要的是从开始使用检查项目数据和索引 我怎么能这样做?
答案 0 :(得分:9)
我不确定你是否想要这个。
您必须使用CheckListBox1.Checked[i]
功能
此代码将返回TCheckListBox中的已检查项及其索引。
for I := 0 to CheckListBox1.Items.Count - 1 do
begin
if CheckListBox1.Checked[i] then
begin
ShowMessage('Item at index ' + IntToStr(i) + ' is selected.' +
'Its value is '+ CheckListBox1.Items.Strings[i]);
end;
end;