up vote 13 down vote favorite
5
share [g+] share [fb]

I have a Windows Forms app, that has a single ElementHost containing a WPF UserControl... in my WPF, I have a VERY simple ListView:

<ListView Margin="4" ItemsSource="{Binding Notifications}">
    <ListView.View>
    	<GridView>
    		<GridViewColumn Header="FirstName" DisplayMemberBinding="{Binding FirstName}" />
    		<GridViewColumn Header="LastName" DisplayMemberBinding="{Binding LastName}" />
    		<GridViewColumn Header="Address" DisplayMemberBinding="{Binding Address}" />
    		<GridViewColumn Header="City" DisplayMemberBinding="{Binding City}" />
    		<GridViewColumn Header="State" DisplayMemberBinding="{Binding State}" />
    		<GridViewColumn Header="Zip" DisplayMemberBinding="{Binding Zip}" />
    	</GridView>
    </ListView.View>
</ListView>

If my source has 10 items, the form loads in less than one second. If my source has 1000 items, it takes 7 seconds!!! My timer is ONLY taking the loading into account (not how much time it takes to get the items).

So my question is:

Is using an ElementHost a performance nightmare?

Is WPF DataBinding a performance nightmare?

Is the ListView a piece of crap? (btw, same results with the WPFToolkit's DataGrid)?

link|improve this question

feedback

2 Answers

up vote 13 down vote accepted

Use virtualization

<ListView ItemsSource="{BindingNames}"Name="lv">
            <ListView.ItemsPanel>
                <ItemsPanelTemplate>
                   <!--<StackPanel/>
                    If StackPanel was used, the memory consumed was over 2GB and dead slow.
                    -->
                   <VirtualizingStackPanel>
                    <!--Memory footprint is only 200 mb-->
                    </VirtualizingStackPanel>
                </ItemsPanelTemplate>
            </ListView.ItemsPanel>
            <ListView.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding}"/>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>
link|improve this answer
That's both amazing and astonishing. Is there anyway to get the same look/feel of using GridView instead of DataTemplating things myself? – Timothy Khouri Nov 17 '08 at 20:05
Yes. Just put the "<ListView.ItemsPanel> <ItemsPanelTemplate> <VirtualizingStackPanel/> </ItemsPanelTemplate> </ListView.ItemsPanel>" part in your code. This is the part which speeds up things. – Chris Jester-Young Nov 17 '08 at 20:18
1  
Note that VirtualizingStackPanels are the default items panel template for ListViews. Using some features like grouping will override the default, however. – Scott Bilas Jan 6 '10 at 22:24
feedback

You may also want to check this excellent article on the Code Project:

WPF: Data Virtualization By Paul McClean http://www.codeproject.com/KB/WPF/WpfDataVirtualization.aspx

It show you a much better approach at minimal memory and bandwidth usage.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.