我有一个网格:
<Grid.RowDefinitions>
<RowDefinition Height="100"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
第二行是scrollviewer:
<ScrollViewer VerticalScrollBarVisibility="Auto" MinHeight="400" Grid.Row="1">
<ItemsControl ItemsSource="{Binding SelectedUserControls}"/>
</ScrollViewer>
如果需要,我希望第二行使用滚动, 但滚动是永远不可见的,如果项目控件大于屏幕,则为事件。
如何在需要时显示滚动条?
答案 0 :(得分:4)
编辑:
尝试删除'MinHeight = 400',我打赌它有效!!
你的ItemsControl为400的MinHeight。所以,除非你有足够的物品来占用400,否则你将看不到你的滚动条。我猜测容器拿着你的网格(或网格上的显式高度小于400),你有足够的项目对于那个容器来说太大了,但没有足够的项目来填充你的ItemsControl的MinHeight。
原始答案:我刚刚运行了一个包含30个项目的测试应用程序(足以填满MinHeight),它似乎工作正常:
<Window x:Class="TestApp11.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:l="clr-namespace:TestApp11"
Title="Window1" Loaded="Window_Loaded" Height="600" Width="800">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="100"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<ScrollViewer VerticalScrollBarVisibility="Auto" MinHeight="400" Grid.Row="1">
<ItemsControl>
...
<ListBoxItem Content="Item 30" />
...
</ItemsControl>
</ScrollViewer>
</Grid>
</Window>
持有网格的容器是否有明确的高度?
答案 1 :(得分:2)
将MinHeight更改为MaxHeight。