在 Flex 中为 as:Panel 创建滚动条
我是 Flex 开发的新手。
在我的项目中,我使用此创建了一个面板,
<s:Panel x="46" y="193" width="75%" height="75%" dropShadowVisible="false">
这里发生的情况是,面板的一部分超出了浏览器视图,我需要包含滚动条,以便我可以滚动到面板本身的右端和底端。
我想知道如何向 s:panel 添加滚动条。
I am new to flex development.
In my proj, I have created a panel using this
<s:Panel x="46" y="193" width="75%" height="75%" dropShadowVisible="false">
what happens here is that, the part of the panel goes out of the browser view and I need to include scrollbars so that I can scroll to the right end and bottom end of the panel itself.
I would like to know how I can add scrollbars to the s:panel.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用卷轴包裹它! ;)
wrap it with a scroller! ;)
为了使用您自己的滚动条,您需要三件事:
1.您的主(父)容器应该实现 IViewport(s:Group 的任何子类都可以)
2. 将容器的属性“clipAndEnableScrolling”设置为“true”。
3. 将此主容器指定为滚动条的“viewport”属性。
哈特哈,
FT任务
In order to use your own scrollbars you need three things:
1. Your main (parent) container should implement IViewport (any subclasses of s:Group would do)
2. Set container's property 'clipAndEnableScrolling' to 'true'.
3. You assign this main container as 'viewport' property of your scrollbar.
HTH,
FTQuest