将 ListView 滚动条移至 GridViewColumnHeaders 下方

发布于 2024-12-08 14:21:26 字数 86 浏览 0 评论 0原文

我试图弄清楚如何获取 ListView 中的垂直 ScrollBar 以清除 GridViewColumnHeaders。谁能给我一些从哪里开始的想法?谢谢。

I'm trying to figure out how to get the vertical ScrollBar in a ListView to clear the GridViewColumnHeaders. Can anyone give me some ideas of where to start? Thanks.

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

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

发布评论

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

评论(1

兰花执着 2024-12-15 14:21:26

我看到 3 个选项...

  1. 手动将标题创建为 ListView 顶部的网格,并隐藏 ListView 的标题。

  2. 重写ListView的ControlTemplate

  3. 使用DataGrid而不是ListView< /code>

对于#1,您需要创建一个 DockPanel,其中包含标题顶部的网格,和列表视图占用剩余空间。您必须指定每列的宽度才能正确排列它们,并确保隐藏 ListView 标题。

对于#2,您可以使用 Expression Blend 等工具为 ListView 添加默认的 ControlTemplate,并对其进行更改,以便 ScrollBar 不会包裹 Header 项。

对于 #3,只需使用 VerticalScrollBarVisibility=Auto 切换到 DataGrid

我个人的偏好是 #3。事实上,我认为我从来没有使用过 ListView...:)

I see 3 options...

  1. Manually create the Header as a Grid on top of the ListView, and hide the ListView's header.

  2. Rewrite the ListView's ControlTemplate

  3. Use a DataGrid instead of a ListView

For #1, you'll want to create a DockPanel containing a Grid along the top for the Header, and the ListView taking up the remaining space. You'll have to specify how wide each column is going to be to line them up correctly, and be sure to hide the ListView headers.

For #2, you can use a tool such as Expression Blend to extra the default ControlTemplate for a ListView, and alter it so that the ScrollBar does not wrap the Header items.

For #3, simply switch to a DataGrid with VerticalScrollBarVisibility=Auto

My personal preference is #3. In fact, I don't think I have ever even used a ListView... :)

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