画布总宽度(可见宽度+隐藏可滚动部分)
这可能是理所当然的事情,但我花了大约 40 分钟左右的时间寻找它,但没有找到。
我有一个具有固定宽度和水平滚动条的 Canvas 控件。 我正在尝试找到控件的实际宽度。 .width(固定宽度)+滚动条显示的部分。 我尝试了explicitWidth、width + maxHorizontalScrollPosition和其他一些组合,但没有一个能达到预期效果。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来
width + maxHorizontalScrollPosition
确实足够了。问题出在我的应用程序中的事件顺序(滚动条没有足够的时间来更新其显示)。我最终向代表画布内容的类添加了一个自定义事件。
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.