Scrollviewer ActualHeight超过屏幕分辨率

发布于 2024-12-14 06:31:18 字数 461 浏览 1 评论 0原文

我有一个带有以下行设置的 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 技术交流群。

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

发布评论

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

评论(2

征棹 2024-12-21 06:31:18

如果将外部 Grid 放置在垂直方向的 StackPanel 中,则网格的高度可能没有限制,并且网格的垂直方向可能没有限制。 ScrollViewer。将Grid 放置在DockPanel 中,或设置Grid 的(最大)高度。那么 ScrollViewer 将具有有限的高度。

If you place the outer Grid in f.i. a StackPanel with orientation vertical, then there might not be a limit on the height of the grid, and then not a vertical limit on the ScrollViewer. Place the Grid in a DockPanel, or set a (maximum) height of the Grid. Then the ScrollViewer will have a limited height.

饮湿 2024-12-21 06:31:18

使用 MinHeight、MaxHeight

<ScrollViewer 
            VerticalAlignment="Top"
            Grid.Column ="0"    
            MinHeight="60"
            MaxHeight="190"
            Grid.Row="0"
            />

然后调整 Scrollviewer 的屏幕分辨率

Used MinHeight,MaxHeight

<ScrollViewer 
            VerticalAlignment="Top"
            Grid.Column ="0"    
            MinHeight="60"
            MaxHeight="190"
            Grid.Row="0"
            />

then adjust your Scrollviewer on screen resolution

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