不带滚动条滚动 Spark 列表

发布于 2024-12-10 01:34:28 字数 65 浏览 0 评论 0原文

如何在禁用滚动条的情况下滚动 Spark 列表? 我创建了两个按钮来上下滚动,但不清楚可以使用哪些方法来滚动列表。

How to scroll Spark list with a disabled scroller bar?
I created two buttons to scroll up and down, but it is unclear what methods can be used to scroll the list.

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

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

发布评论

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

评论(1

梦幻的心爱 2024-12-17 01:34:28

您不应该尝试禁用滚动条。您应该为滚动条创建一个自定义外观,该皮肤使用您的自定义按钮,并根据您想要的设计适当地放置它们。

为 Scroller 换肤的更多信息

有关 可以通过设置 horizo​​ntalScrollPositionverticalScrollPosition 位于其 数据组。从概念上讲是这样的:

myList.dataGroup.horizontalScrollPosition = newPosition;

You shouldn't try to disable the scroll bar. You should create a custom skin for the scroll bar that uses your custom buttons and places them appropriately based on the design you want.

More info on skinning a Scroller

All that said, you can scroll a list by setting the horizontalScrollPosition or verticalScrollPosition on it's dataGroup. Conceptually something like this:

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