I am using a ListBox with ItemsPanel set to VirtualizingStackPanel.
<ListBox ItemsSource="{Binding Items}"
ScrollViewer.VerticalScrollBarVisibility="Visible">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel Orientation="Horizontal"
VirtualizationMode="Recycling"
HorizontalAlignment="Stretch"
VerticalAlignment="Top"
/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<DataGrid
VerticalAlignment="Top"
HeadersVisibility="None"
ItemsSource="{Binding Distances}">
<DataGrid.Columns>
<DataGridTemplateColumn IsReadOnly="True" Width="100">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding FactDistance}"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
<DataGridTemplateColumn Width="100">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding NormDistanceValue}"
VerticalAlignment="Stretch"
HorizontalAlignment="Stretch"
TextAlignment="Center"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
<DataGridTemplateColumn Width="100">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding NormLiterature}"
VerticalAlignment="Stretch"
HorizontalAlignment="Stretch"
TextAlignment="Center"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ListBox>
It looks ok: https://i.stack.imgur.com/53KLx.png
But when I do horizontal scrolling by quckly dragging the thumb, strange extra space appears https://i.stack.imgur.com/GHl8k.png
And when I resize the window, that extra space magically disappears. Where does it come from? How to get rid of it?
If I use simple StackPanel everything is fine, but I need to use virtualization.