本文主要是介绍如何设置让combox 显示成TextBox 样子.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
通过设置属性arrowButtonWidth 宽度为0,即看不到combox那个三角
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="1024" minHeight="768">
<mx:Script>
<![CDATA[
private function init():void{
cm.editable=true;
cm.rowCount=5;
cm.selectedIndex=-1;
cm.setStyle("cornerRadius",0);
cm.setStyle("arrowButtonWidth",0);
cm.setStyle("fontWeight","normal");
cm.setStyle("paddingLeft",0);
}
]]>
</mx:Script>
<mx:ComboBox x="204" y="202" id="cm" initialize="init();" ></mx:ComboBox>
</mx:Application>
这篇关于如何设置让combox 显示成TextBox 样子.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!