在AS3中设置ComboBox组件的字体大小
import flash.text.TextFormat;
var mytextformat:TextFormat=new TextFormat();
mytextformat.size=14;
mycomboBox.textField.setStyle(“textFormat”,mytextformat);
mycomboBox.dropdown.setRendererStyle(“textFormat”,mytextformat);
版权声明:本文为xxcainiao原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。