WPF:如何冻结 ListView 标题行,使其不会滚动到屏幕外

WPF: How to freeze a ListView header row so that it won#39;t scroll off the screen(WPF:如何冻结 ListView 标题行,使其不会滚动到屏幕外)
本文介绍了WPF:如何冻结 ListView 标题行,使其不会滚动到屏幕外的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我是 WPF 开发的新手,我有一个 ListView,我想冻结标题行,以便在用户滚动列表时它不会滚动到屏幕外.我继承的 xaml 代码如下所示:

I am new to WPF development, I have a ListView and I want to freeze the header row so that it won't scroll off the screen when the user scrolls the list. The xaml code, I have inherited, looks something like this:

<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
  <DockPanel>
    <forms:BindableGrid DockPanel.Dock="Top" [code snipped] >
    <ListView.View>
      <GridView>
        <GridViewColumn Header="ColA" DisplayMemberBinding="{Binding ColA}" />
        <GridViewColumn Header="ColB" DisplayMemberBinding="{Binding ColB}" />
           [etc]

推荐答案

ListView 已经这样做了 - 它有一个内部 ScrollViewer 只滚动项目而不是标题.

The ListView already does this - it has an internal ScrollViewer that only scrolls the items and not the header.

问题是你的外部 ScrollViewer 告诉它的孩子(DockPanel)它有无限的可用空间,而 DockPanel 告诉它到它的孩子,所以你的 ListView 最终占用了显示所有项目所需的空间,并且内部 ScrollViewer 不显示.

The issue is that your outer ScrollViewer tells its child (the DockPanel) that it has infinite space available, and the DockPanel tells this to its children, so your ListView ends up taking up as much space as it needs to display all the items and the internal ScrollViewer doesn't show up.

如果你拿走你的外部 ScrollViewerListView 应该会发现它的空间有限,并且内部 ScrollViewer 会出现.

If you take away your outer ScrollViewer, the ListView should pick up that it has limited space, and the internal ScrollViewer will appear.

这显然会影响 DockPanel 中的其他内容,所以我会看看会发生什么然后从那里开始.

This will obviously affect the rest of the stuff in your DockPanel, so I'd see what happens and go from there.

这篇关于WPF:如何冻结 ListView 标题行,使其不会滚动到屏幕外的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)
How to store delegates in a List(如何将代表存储在列表中)
Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)
CreateDelegate with unknown types(具有未知类型的 CreateDelegate)
Does Funclt;Tgt;.BeginInvoke use the ThreadPool?(Funclt;Tgt;.BeginInvoke 使用线程池吗?)
How to create a delegate to an instance method with a null target?(如何为具有空目标的实例方法创建委托?)