以下代码示例应该生成hello world(两行),但它会生成" world hello"相反......
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark">
<s:states>
<s:State name="state1" />
<s:State name="state2" />
</s:states>
<s:Form excludeFrom="state2">
<s:Label text="hello" />
<s:Label text="world" includeIn="state1" />
</s:Form>
</s:Application>
将Form
替换为HGroup
VGroup
似乎按预期工作...
我知道这不是Form
的推荐用法,但我尝试使用它只是因为它支持defaultButton开箱即用。
不应该有用吗?
修改 似乎BorderContainer有同样的问题,但mx:Form似乎运作良好