Tagged Questions

13
votes
2answers
3k views

WPF - Virtualizing an ItemsControl?

I have an ItemsControl containing a list of data that I would like to virtualize, however VirtualizingStackPanel.IsVirtualizing="True" does not seem to work with an ItemsControl. Is this really the ...
8
votes
1answer
3k views

ItemsControl, VirtualizingStackPanel and ScrollViewer height

I want to display a important list of items using an ItemsControl. The reason why I'm using an ItemsControl is that the DataTemplate is much more complex in the application I'm working on: The sample ...
3
votes
1answer
245 views

How does VirtualizingStackPanel decide when to unload (dispose?) of virtualized controls?

I'm working with an ItemsControl using a VirtualizingStackPanel in its ControlTemplate. I've got the virtualization working, to some extent. I've put debugging statements in the Loaded and Unloaded ...
2
votes
1answer
33 views

Rendering issues with items in ItemsControl

I'll keep it concise. I have a ListBox that implements an ItemTemplate. The DataTemplate contains a checkbox. I load about 2000 items. I check the first 5 items, scroll to the bottom and select the ...
0
votes
1answer
32 views

Virtualizing Panel that doesn't crop items

So, it looks really silly to have a chrome-less collection if the items are getting cut/cropped at the end of the scroll region. I want to create a virtualizing panel for collections ...
0
votes
1answer
699 views

“BindingExpression path error” using ItemsControl and VirtualizingStackPanel

I'm using Silverlight on Windows Phone 7. Is it normal to get loads of "BindingExpression path error" debug messages when using a VirtualizingStackPanel? I think it is happening because the visual ...
0
votes
2answers
425 views

How to obtain the panel within a treeview (WPF)

How can one obtain the panel that is used within a TreeView? I've read that by default TreeView uses a VirtualizingStackPanel for this. When I look at a TreeView template, all I see is ...