能让combobox只能选,不能输入吗?(50分)

  • 主题发起人 主题发起人 igghde
  • 开始时间 开始时间
I

igghde

Unregistered / Unconfirmed
GUEST, unregistred user!
也就是不让combobox没有itemindex=-1的情况,只能在我设定的里面选。
 
combobox1.Style := csDropDownList;
 
初始的时候给itemindex=0 不就行了,Style 是 DropList
 
combobox1.style=csDropDownList;
设置这个属性就可以了,还有combox1.itemindex=0;
这样就没有门了。
 
可以的
combobox1.Style := csDropDownList;
combobox1.ItemIndex:=0;
 
这也问。。。combobox1.Style := csDropDownList;
 
thanks a lot!
 
后退
顶部