请问在delphi中combobox和checkbox组合在一起实现某个功能怎么写?

2025-01-06 05:01:13
推荐回答(1个)
回答1:

if combobox1.text = '关机' then //判断选中的是什么
if checkbox1.checked then //判断checkbox是否选中
begin
..... //如果选中
end;