i want to display image in each item on VirtualizaingWrapPanel.
I try to modify the sample code VirtualizingWrapPanel.WPF Example.xml
by adding a line (bold below) to show a image
< DataTemplate x:Key="dataTemplate">
..........................
< TextBlock FontWeight="Bold" Text="Discontinued:" Grid.Row="4"/>
<TextBlock Text="{Binding Discontinued}" Grid.Row="4" Grid.Column="1" />
<TextBlock FontWeight="Bold" Text="Image:" Grid.Row="5"/>
<Image Source="{Binding Image}" Grid.Row="5" Grid.Column="1" />
</Grid>
the Image is a property with BitmapImage Type.
After recomplie the sample and i can see the image shown.
However,when i resize the sample window.the app seems hang.
I would like to known the properly way to display a image in VirtualizingWrapPanel?

We're having problems trying to get the tabing sequence working correctly for a WPF RadGridView with a HierarchyChildTemplate per row. With grid rows fully expanded the grid only tabs through all row cells and never tabs into the row’s child template. Can you please advise how we can solve this issue.
<telerik:GridViewDataColumn Header="Original" SortMemberPath="OriginalName" HeaderTextAlignment="Center" TextAlignment="Left" Width="80" DataMemberBinding="{Binding OriginalName}"> <telerik:GridViewDataColumn.CellEditTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <Label Content="{Binding OriginalName,Mode=OneWay}"/> <telerik:RadButton Name="Lookup" Click="Lookup_Click"/>
<!-- this click event will popup lookup window then bind selected data to OriginalName --> </StackPanel> </DataTemplate> </telerik:GridViewDataColumn.CellEditTemplate> </telerik:GridViewDataColumn>