如何在 Flex 4 的 MenuBar 上实现 itemRenderer?
我正在尝试制作一个带有链接按钮的项目渲染器的菜单栏。我怎么能这样做呢?这是我的代码到目前为止的样子,但我似乎无法让它工作。
<mx:MenuBar id="menuBar" labelField="@label" dataProvider="{menus}" itemRenderer="mx.controls.LinkButton">
</mx:MenuBar>
I'm trying to make a menubar with an itemrenderer of linkbuttons. How could I go by doing this? Here is what my code looks like so far, but I can't seem to get it working.
<mx:MenuBar id="menuBar" labelField="@label" dataProvider="{menus}" itemRenderer="mx.controls.LinkButton">
</mx:MenuBar>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请改用 MenuBarItemRenderer 属性itemRenderer 的属性,它未在 MenuBar 类上定义,并且很可能会引发编译时错误。
如果这不是您的解决方案,您将不得不量化“似乎无法使其发挥作用”。您看到编译错误吗?还是运行时错误?或者遇到意想不到的行为?
Use the MenuBarItemRenderer property instead of itemRenderer, which is not defined on the MenuBar class and will most likely throw a compile time error.
If that is not your solution, you'll have to quantify "can't seem to get it working." Are you seeing a compile errors? Or runtime error? Or experiencing unexpected behavior?