如何将我自己的自定义组件加载到 AIR 应用程序中?

发布于 2024-07-29 02:37:39 字数 467 浏览 2 评论 0原文

我为主页、联系页面、规则页面等创建了单独的画布组件。 在我的主应用程序中,它具有应用程序控制器(子状态)中的“主页”、“联系人”、“规则”等链接按钮。

 <?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谜泪 2024-08-05 02:37:39

在脚本标记之间

   public static const HOME:Number = 0;
   public static const CONTACT:Number = 1;

您可以使用视图堆栈来显示不同的视图,而 myStack.selectedIndex 只是一个数字,但我更喜欢使用静态值来执行此操作,因此如果发生变化,您只需在一个地方更改它

<mx:LinkButton label="home" click="{myStack.selectedIndex = HOME}"/>

<mx:ViewStack id="myStack" creationPolicy="auto" width="100%" height="100%">
       <view:Home/>
       <view:Contact/>
</mx:ViewStack>

Between the script tags

   public static const HOME:Number = 0;
   public static const CONTACT:Number = 1;

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

<mx:LinkButton label="home" click="{myStack.selectedIndex = HOME}"/>

<mx:ViewStack id="myStack" creationPolicy="auto" width="100%" height="100%">
       <view:Home/>
       <view:Contact/>
</mx:ViewStack>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文