我正在尝试为移动应用程序使用 flash builder 找出“代码背后”的正确方法:
- 我正在创建一个 flex 移动 AIR 项目(基于“选项卡式视图”模板)
- 在设计模式下设置我的 UI
- 现在我希望所有逻辑都在一个单独的类中,从而相应地改变 UI 外观
听起来很容易,但是我真的无法获得这样做的方法,感谢您的帮助:)
更新:
主应用:
<?xml version="1.0" encoding="utf-8"?>
<s:TabbedViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" applicationDPI="160">
<s:ViewNavigator label="a" width="100%" height="100%" firstView="views.aView"/>
<s:ViewNavigator label="b" width="100%" height="100%" firstView="views.bView"/>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
</s:TabbedViewNavigatorApplication>
观点一:
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" title="a">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:Label id="txt" x="280" y="139" text="Label"/>
</s:View>
所以现在我希望 MyClass 根据我的逻辑更改 txt textField ,正确的方法是什么?