按钮文本通常对齐水平中心和垂直对齐中间。当我在扩展VGroup的组件中使用Spark Button时,它不会。这是我的VGroup代码:
public class StackedGroup extends VGroup
{
public function StackedGroup()
{
paddingLeft = 13;
paddingTop = 0;
paddingBottom = 13;
gap = 7;
}
}
我需要设置哪些属性才能让Button再次正确对齐?
感谢您的帮助。
更新:这个VGroup的几个按钮的样式与la:
相关联ownerInfoSection|MyInformation #addDeleteButton
{
skinClass:ClassReference("skins.profile.DelegateButtonSkin");
color: #000000;
fontSize: 12;
cornerRadius: 5;
}
所以我在“DelegateButtonSkin”中使用了SparkButtonSkin的默认实现,现在看起来非常集中。