标签: checkbox tscrollbox
我在滚动框中创建了动态复选框。我试图删除滚动框中选中的复选框,但是我不确定如何删除它们。我尝试使用组件编码,但是没有用。 请帮忙。
对于i:= 0到sclList.ComponentCount-1做
开始
if TCheckbox(SclList.Components[i]).checked = true Then Begin TCheckbox( sclList.Components[i] ).SetFocus; Break; End;
结束;