我希望我BitmapImage
根据Label
.
这是一段非常简单的代码:
<s:VGroup>
<s:BitmapImage width="100%" source="@Embed('/image.png')" fillMode="scale" scaleMode="stretch"/>
<s:Label text="Short"/>
</s:VGroup>
<s:VGroup>
<s:BitmapImage width="100%" source="@Embed('/image.png')" fillMode="scale" scaleMode="stretch"/>
<s:Label text="Very long message"/>
</s:VGroup>
这是输出:
正如你所看到的,我的图像是自愿放大的,而它根本没有缩小。
背后的原因是什么?有简单的解决方案吗?
注意:我不能将宽度设置BitmapImage
为Label
.