WPF参考ScrollViewer模板的ScrollContentPresenter
我有一个 WPF ScrollViewer,我想访问它的模板的 ScrollContentPresenter。
I have a WPF ScrollViewer, and I would like to get to the ScrollContentPresenter of it's template.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您希望访问 ScrollViewer 的 ScrollContentPresenter,您可以使用 ControlTemplate
If you wish to get to the ScrollContentPresenter of a ScrollViewer you can use a ControlTemplate
也许您想从内容向上绑定某些内容,而不是尝试从 ScrollViewer 沿着树向下移动?
类似于:
注意:该语法可能不是 100% 正确,这超出了我的想象
Instead of trying to go down the tree from ScrollViewer, maybe you want to bind something from the Content up?
Something like:
Note: That syntax might not be 100% right, it's off the top of my head