其他控件中的 WPF ScrollViewer
当我有像 WPF Treeview 这样的控件时, 当然,当该树视图的内容超过最大高度或宽度时,就会出现滚动。
有没有办法获得该滚动来移动它或禁用它?
谢谢
When I have a control like a WPF Treeview,
Naturally when the contents of that treeview exceed the maximum height or width a scroll appears.
Is there a way to obtain that scroll to move it or disable it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要推出自己的 ControlTemplate。这将允许您准确定义用于构建 TreeView 的控件。模板中将显示 TreeView 项目的部分是 ItemsPresenter,因此这显然是模板的必需部分。
You want to roll your own ControlTemplate. This will allow you to define exactly the controls that are used to build the TreeView. The part of the template that will display your TreeView items is the ItemsPresenter, so this is obviously a required part of the template.