Scrollviewer ActualHeight超过屏幕分辨率
我有一个带有以下行设置的 Grid: (抱歉,我无法发布太多代码)
RowDefinition Height="1*"
RowDefinition Height="120"
在该网格内,我有一个带有 Height="Auto"
和 verticalAlignment = "Stretch"
的 ScrollViewer
> 在第 0 行。
在第 2 行,我有另一个网格,其固定高度为 60 像素。
当我执行 this.UpdateLayout
(在 UserControl
内)时,scrollviewer.ActualHeight
变为 2332,这与图像的大小相同其内部并超过分辨率屏幕。为什么它不更新以适应屏幕?
谢谢。
I have a Grid
with these rows settings:
(I can't post much code, sorry)
RowDefinition Height="1*"
RowDefinition Height="120"
Inside that grid I have a ScrollViewer
with Height="Auto"
and verticalAlignment = "Stretch"
at Row 0.
At row 2 I have another grid with a fix height of 60 pixels.
When I do this.UpdateLayout
(inside an UserControl
), then the scrollviewer.ActualHeight
goes to 2332, which is the same size of an image inside it and exceed the resolution screen. Why its not updating to fit the screen?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果将外部
Grid
放置在垂直方向的StackPanel
中,则网格的高度可能没有限制,并且网格的垂直方向可能没有限制。ScrollViewer
。将Grid
放置在DockPanel
中,或设置Grid
的(最大)高度。那么ScrollViewer
将具有有限的高度。If you place the outer
Grid
in f.i. aStackPanel
with orientation vertical, then there might not be a limit on the height of the grid, and then not a vertical limit on theScrollViewer
. Place theGrid
in aDockPanel
, or set a (maximum) height of theGrid
. Then theScrollViewer
will have a limited height.使用 MinHeight、MaxHeight
然后调整 Scrollviewer 的屏幕分辨率
Used MinHeight,MaxHeight
then adjust your Scrollviewer on screen resolution