◆combobox如何禁止下拉◆
发现combobox没有readonly功能,查网上有一种用API函数GetWindow,SendMessage实现的,这种方法只是不能在combobox输入而已,但还是能通过下拉改变值,设置enabled为false背景颜色又修改不了,不知还有什么办法
------解决方案--------------------不让下拉,就别添加item就行了,并设置IntegralHeight=false
------解决方案--------------------Enable=false,
再改下颜色
------解决方案--------------------Enabled=false ASP.NET
disabled=true; html
------解决方案--------------------C# code
comboBox1.DropDownStyle = 0;