Does ScrollViewer need to set MaxHeight or Height in order to work properly? #15268
Unanswered
IronEaterBeast
asked this question in
Q&A
Replies: 1 comment
-
<Grid
! RowDefinitions="*,Auto"
Grid.Column="1">
<ScrollViewer Grid.Row="0" MaxHeight="700" AllowAutoHide="False">
... More: https://docs.avaloniaui.net/docs/reference/controls/grid/#proportional-size-definitions |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I placed ScrollViewer in a grid, but the grid's height is subject to change based on the size of the entire window. Therefore, I cannot give ScrollViewer an exact height. In this case, how can I use it?
<Grid RowDefinitions="Auto,Auto" Grid.Column="1"> <ScrollViewer Grid.Row="0" MaxHeight="700" AllowAutoHide="False">
Or, is there any other way to use scroll in Grid?
Beta Was this translation helpful? Give feedback.
All reactions