谁用过tchecklistbox,请指点一下。(20分)

  • 主题发起人 主题发起人 海皇
  • 开始时间 开始时间

海皇

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样使用tchecklistbox,如何判断checklistbox其中一项的check属性?
 
1.按照条目的序号来访问
if CheckListBox1.Checked[0] then

2.按照条目的名称来访问
function ItemChecked(ACheckListBox: TCheckListBox
ItemText : string) : boolean;
var
index : integer;
begin
index := ACheckListBox.Items.IndexOf(ItemText);
if index > -1 then
result := ACheckListBox.Checked[index]
else
result := False;
end;
 
多人接受答案了。
 
后退
顶部