我有两个问题。
请提出您的建议。
答案 0 :(得分:1)
好的,我已经编辑了我的答案。 看起来唯一的方法就是将Label包装在像HBox这样的容器中
<mx:HBox width="100%" horizontalAlign="right" id="hbox1" cornerRadius="16" borderStyle="solid">
<mx:Label label="{stuff}" id="opLabel" />
</mx:HBox>
答案 1 :(得分:1)
使用Spark组件使用BorderContainer控件
<s:BorderContainer id="brdr"
cornerRadius="6"
width="80" height="30"
horizontalCenter="0" verticalCenter="0">
<s:Label id="lblFoo"
text="Bar"
width="100%" height="15"
horizontalCenter="0" verticalCenter="0"/>
</s:BorderContainer>
答案 2 :(得分:0)
要更改组合框箭头,您需要更改以下外观:
对于可编辑的组合框,您需要更改以下外观:
答案 3 :(得分:0)
如果您在actionScript上编码,请尝试使用此脚本,首先您必须在css文件属性中创建,例如:
CSS-File
.lineCorner{ corner-radius: 20; }
在您的主要mxml应用中,您必须将styleName
设置为标签,如下例所示:
var myLabel:Label = new Label();
myLabel.text = "Bla-Bla-Bla";
myLabel.styleName = "lineCorner";
this.addChild(myLabel);