I've got the following ListView defined in xaml:
<ListView Grid.Row="1"
Grid.Column="0"
Margin="20,0"
ItemsSource="{Binding UIModel.CommandHistory}"
SelectionMode="None"
HorizontalContentAlignment="Stretch"
VerticalContentAlignment="Stretch" >
</ListView>
When I add multiple Items to the bound ObservableCollection, the items are loaded all at once. Is there a way to make them load cascading?