如何将我自己的自定义组件加载到 AIR 应用程序中?
我为主页、联系页面、规则页面等创建了单独的画布组件。 在我的主应用程序中,它具有应用程序控制器(子状态)中的“主页”、“联系人”、“规则”等链接按钮。
<?xml version="1.0" encoding="utf-8"?><mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="903" height="508" backgroundImage="@Embed(source='image/mainbackground.png')">
<mx:label x="483" y="166" label="Welcome to our site"/>
<mx:DateChooser x="229" y="166"/>
如果单击主页按钮,则显示主页画布。 我该如何实施? 或向我推荐任何学习网址
I created separate own canvas component for Home page, Contact page, Rules page etc.
In my main application it has link button like Home,Contact,Rules in application controller(child state) .
<?xml version="1.0" encoding="utf-8"?><mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="903" height="508" backgroundImage="@Embed(source='image/mainbackground.png')">
<mx:label x="483" y="166" label="Welcome to our site"/>
<mx:DateChooser x="229" y="166"/>
If you click home button then show homepage canvas. How can i Implement? or refer me any url for study
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在脚本标记之间
您可以使用视图堆栈来显示不同的视图,而 myStack.selectedIndex 只是一个数字,但我更喜欢使用静态值来执行此操作,因此如果发生变化,您只需在一个地方更改它
Between the script tags
You can use a viewstack to display different views and myStack.selectedIndex is just a number but I like it more to do this with a static value so you only have to change it on one place if something changes