画布总宽度(可见宽度+隐藏可滚动部分)

发布于 2024-08-29 23:33:44 字数 199 浏览 4 评论 0原文

这可能是理所当然的事情,但我花了大约 40 分钟左右的时间寻找它,但没有找到。

我有一个具有固定宽度和水平滚动条的 Canvas 控件。 我正在尝试找到控件的实际宽度。 .width(固定宽度)+滚动条显示的部分。 我尝试了explicitWidth、width + maxHorizo​​ntalScrollPosition和其他一些组合,但没有一个能达到预期效果。

It's probably a no brainer, but I've spent the last 40 minutes or so looking for it to no avial.

I have a Canvas control with a fixed width and a horizontal scrollbar.
I'm trying to find the actual width of the control.
The .width (fixed width) + the part being revealed by the scrollbar.
I tried explicitWidth, width + maxHorizontalScrollPosition, and some other combos but non of them hit the spot.

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

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

发布评论

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

评论(1

最笨的告白 2024-09-05 23:33:44

看起来 width + maxHorizo​​ntalScrollPosition 确实足够了。
问题出在我的应用程序中的事件顺序(滚动条没有足够的时间来更新其显示)。我最终向代表画布内容的类添加了一个自定义事件。

Well as it seem width + maxHorizontalScrollPosition is indeed enough.
The problem was with the order of events in my application (the scrollbar didn't have enough time to update it's display). I ended up adding a custom event to the class representing the content of the Canvas.

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