如何使 ScrollViewer 具有精确的高度*并*始终显示两个滚动条?

发布于 2024-08-18 04:04:05 字数 751 浏览 4 评论 0原文

我在 ScrollViewer 中有一个 DataGrid

我希望整个内容只有 200 像素高。

但是这段代码:

<ScrollViewer x:Name="DataGridArea" Height="200">
    <toolkit:DataGrid ItemsSource="{Binding FieldChanges}"/>
</ScrollViewer>

仅在右侧上产生滚动条:

alt 文本http://www.deviantsart.com/upload/8lhu03.png

,当我向下滚动到底部时,我只能看到滚动条:

替代文本 http://www.deviantsart.com/upload/a9oikp.png

我必须做什么使我的 ScrollViewer 高度为 200 像素并且两个滚动条始终存在?

I have a DataGrid inside a ScrollViewer.

I want the whole thing to only be 200 pixels high.

But this code:

<ScrollViewer x:Name="DataGridArea" Height="200">
    <toolkit:DataGrid ItemsSource="{Binding FieldChanges}"/>
</ScrollViewer>

produces this with the scrollbar only on the right side:

alt text http://www.deviantsart.com/upload/8lhu03.png

and I can only see the scrollbar when I scroll down to the bottom:

alt text http://www.deviantsart.com/upload/a9oikp.png

What do I have to do so that my ScrollViewer is 200 pixels high AND both scrollbars are present at all times?

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

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

发布评论

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

评论(2

囚你心 2024-08-25 04:04:05

如果您将 ScrollViewer 上的 VerticalScrollBarVisibilityHorisontalScrollBarVisibility 设置为 Visible 会发生什么?

What happens if you set VerticalScrollBarVisibility and HorisontalScrollBarVisibility to Visible on the ScrollViewer ?

青巷忧颜 2024-08-25 04:04:05

我认为您需要设置 ScrollViewer 内容(DataGrid)的高度。

I think you need to set the height of the ScrollViewer's content (the DataGrid).

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