Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个wx.ScrolledWindow带有一些子窗口的窗口。
wx.ScrolledWindow
我想要一个滚动到子窗口的功能。
例如:scrollToChild(childWindow)。此功能将滚动到子窗口。
scrollToChild(childWindow)
这个函数看起来很有用,但我在 API 中找不到这样的函数。有谁知道如何做到这一点?
ScrolledPanel,它是 的子类ScrolledWindow,具有ScrollChildIntoView() 方法。这似乎可以满足您的需求。
ScrolledPanel
ScrolledWindow