flex 4.5.1表单状态是否存在错误?

时间:2015-03-02 11:02:58

标签: flex flex4.5 states

以下代码示例应该生成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似乎运作良好

0 个答案:

没有答案