ComboBox1.ItemIndex(取值范围 0 到 ComboBox1.Items.Count-1)
如果要 选中项的 内容 ComboBox1.Items.String[ComboBox1.ItemIndex]
或 ComboBox1.Items[ComboBox1.ItemIndex]
if combobox.text = '零售' then beginlabel.Caption := '0'
end else if combobox.text = '批发' then begin
label.Caption := '1'
end
取显示的内容:cxCheckComboBox1.Text
取已勾选的内容:
var
idx, cnt: Integer
begin
cnt := cxCheckComboBox1.Properties.Items.Count
for idx := 0 to cnt - 1 do
begin
if cbsChecked=cxCheckComboBox1.States[idx] then
begin
ShowMessage(cxCheckComboBox1.Properties.Items[idx].Description)
end
end
end
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)