在 Flex 4 中创建面包屑路径

发布于 2024-12-04 05:58:39 字数 121 浏览 0 评论 0原文

有人知道如何在 Flex 4 中制作 BreadCrumb Trails 吗?

例如:

Screen1 ->屏幕2 ->屏幕3

到底有可能吗?

请帮忙

Anyone has an idea how to do BreadCrumb Trails in Flex 4?

For example something like:

Screen1 -> Screen2 -> Screen 3

Is it possible after all?

Help Pls

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

等待圉鍢 2024-12-11 05:58:39

您通常使用 currentState 和 ViewStacks 进行导航。

无论您在哪里,只需在屏幕上添加链接按钮,并用“>”分隔即可并使它们的行为成为相关状态或堆栈更改。

您甚至可以在进入状态时动态添加和删除按钮。

这仅取决于您想要多花哨。

但基本上你要问的是:

我如何制作一个按钮,转到我的用户界面中的某个地方。根据需要重复多次。

单击=“当前状态='TheNameOfTheState'”
click="SomeViewStackName.selectedIndex=1"

这就是全部内容。

You generally navigate using currentState and ViewStacks.

Where ever you are just add link buttons on the screens separated by ">" and have their behaviour be the relevant state or stack change.

You could even dynamically add and remove buttons on entering the state.

It just depends how fancy you want to be.

But basically what you are asking is:

How do I make a button that goes to some place in my ui. Repeat for as many as needed.

click="currentState='TheNameOfTheState'"
click="SomeViewStackName.selectedIndex=1"

Thats all there is to it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文