I have a problem with the UI virtualization of an ListView with hundreds of elements which items can expose an Visibility property.
Unfortunately the virtualization not recognizes the visibility correct and makes the Scrollbar smaller or bigger according to how many items are in the ViewPort (and not how many items are non-collapsed in the ViewPort) at the scrolled position.
Is there any way to avoid this problematic without turning off virtualization?
Please see example attached:
<ListView VerticalAlignment="Stretch"
Name="ListViewControl"
HorizontalAlignment="Stretch"
ItemsSource="{Binding Movies}"
ScrollViewer.VerticalScrollBarVisibility="Visible"
SelectedItem="{Binding MovieSelected, Mode=OneWayToSource}">
<ListView.ItemContainerStyle>
<Style TargetType="ListViewItem">
<EventSetter Event="MouseDoubleClick" Handler="ItemClicked" />
<Setter Property="HorizontalContentAlignment" Value="Stretch"/>
<Setter Property="Visibility" Value="{Binding Visibility}"/>
</Style>
</ListView.ItemContainerStyle>
<ListView.ItemTemplate>
<DataTemplate>
<Grid HorizontalAlignment="Stretch">
</Grid>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>