如何在Flex中实现这个伪TabNavigation UI?
我正在尝试在 Flex 中实现上述导航 UI。基本上我想要一个带有两个(或更多)大按钮的栏(参见顶部图片,按钮一和二)。当用户单击按钮一时,按钮条的下部会出现一组新按钮(特定于模式一),并且可以选择(参见左下图)。如果您单击按钮二,也会发生同样的情况(参见右下图)。基本上,按钮一和按钮二选择自己的栏,其中的按钮可用于执行操作。
注意:这并不是一个悬停菜单,即较低的按钮是可见的,直到用户选择另一个较高级别的按钮或单击栏的背景。
我考虑过使用 Spark TabBar 或 ButtonBar 容器,但我不确定这是最好的方法。
感谢您提供任何建议或示例指示!
I'm trying to implement the above navigation UI in flex. Basically I'd like a bar with two (or more) big buttons (see top picture, buttons one and two). When the user clicks on button one, a set of new buttons (specific to mode one) appear in the lower part of the button strip, and can be selected (see lower left pic). Same happens if you click on button two (see lower right pic). Basically, buttons one and two select their own bar with buttons that can be used to do stuff.
Note: this is not intended to be a hover menu, i.e. the lower buttons are visible until the user selects another higher level button or clicks on the background of the bar.
I thought about using either a spark TabBar or ButtonBar container, but I'm not sure that's the best approach.
thank you for any advice or pointers to examples!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您将其标记为 Flex 3 和 Flex 4,因此我建议对此使用 Flex 4 组件。
使用一堆标签栏以及皮肤状态您的自定义组件。从概念上讲是这样的:
有一个像这样的更改方法:
在您的 getCurrentSkinState() 方法中,执行如下操作:
您没有理由不能使用 MX TabBar 执行类似的操作。
这有帮助吗?
Since you tagged this as both flex 3 and Flex 4, I'd recommend using the Flex 4 components for this one.
Use a bunch of tab bars along with skin states of your custom component. Conceptually something like this:
Have a change method something like this:
And in your getCurrentSkinState() method, do something like this:
There is no reason you can't do something similar w/ the MX TabBar.
Does that help?