ScrollViewer ContentScroll 丢失
我的 ScrollViewer 不起作用。 滚动是不可能的。
<ScrollViewer>
<StackPanel>
<ListView> </ListView>
<Grid> </Grid>
<ListView> </ListView>
</StackPanel>
</ScrollViewer>
我尝试了不同的高度设置(对于 ScrollViewer 和 StackPanel)。
如何滚动内容?
编辑:VerticalScrollBarVisibility =“Visible”和CanContentScroll =“True”已经使用了
杰夫
my ScrollViewer doesn't work.
scrolling isn't possible.
<ScrollViewer>
<StackPanel>
<ListView> </ListView>
<Grid> </Grid>
<ListView> </ListView>
</StackPanel>
</ScrollViewer>
i have tried different possibilities with setting of height (for ScrollViewer and StackPanel).
how to scroll the content ?
EDIT: VerticalScrollBarVisibility="Visible" and CanContentScroll="True" already used
jeff
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能是因为你的滚动查看器位于堆栈面板之类的东西中。 尝试使用网格代替。
It's probably because you have your scrollviewer inside something like a stackpanel. Try a grid instead.