在 Flex 中为 as:Panel 创建滚动条

发布于 2024-11-25 00:43:14 字数 249 浏览 1 评论 0原文

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

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

发布评论

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

评论(2

流云如水 2024-12-02 00:43:14

用卷轴包裹它! ;)

<s:Scroller>
...your content to scroll...
</s:Scroller>

wrap it with a scroller! ;)

<s:Scroller>
...your content to scroll...
</s:Scroller>
沫雨熙 2024-12-02 00:43:14

为了使用您自己的滚动条,您需要三件事:
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

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