如何使 ScrollViewer 具有精确的高度*并*始终显示两个滚动条?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您将
ScrollViewer
上的VerticalScrollBarVisibility
和HorisontalScrollBarVisibility
设置为Visible
会发生什么?What happens if you set
VerticalScrollBarVisibility
andHorisontalScrollBarVisibility
toVisible
on theScrollViewer
?我认为您需要设置 ScrollViewer 内容(DataGrid)的高度。
I think you need to set the height of the ScrollViewer's content (the DataGrid).