Tagged Questions
The virtualizingstackpanel tag has no wiki summary.
12
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 ...
7
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 ...
6
votes
3answers
3k views
VirtualizingStackPanel + MVVM + multiple selection
I have implemented a selection pattern similar to the one described in this post using a ViewModel to store the IsSelected value, and by binding the ListViewItem.IsSelected to the ViewModel ...
5
votes
1answer
266 views
what is the actual difference between Recycling/Standard of VirtualizationMode property in VirtualizingStackPanel?
What is actually happening in VirtualizingStackPanel.VirtualizationMode = Recycling/Standard.?
4
votes
2answers
150 views
Virtualizing Stack Panel Returning Null Selected Item
I was using a stack panel to display listbox items, but when I decided to change it to a virtualizing one the selected item was null sometimes. Here is part of the DataTemplate I was using to invoke ...
3
votes
1answer
172 views
Synchronizing multi-select ListBox with MVVM
I have two views of some data: a list view (a ListBox now, but I've been meaning to switch to ListView) and a fancy graphical representation on a map. In either view the user can click an object and ...
3
votes
1answer
231 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 ...
3
votes
0answers
900 views
WPF TreeView with IsVirtualizing=“true” jumps around when changing focus and scrolling
I've made a simple example to reproduce a problem I'm having with the TreeView. If I select an item in the TreeView, scroll down, change the Focus, and then select an item in the TreeView again, the ...
2
votes
1answer
23 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 ...
2
votes
1answer
237 views
VirtualizingStackPanel on a Treeview ist not Virtualizing
i've got a problem here, i want to show some items in a TreeView, about 100.000 Elements.
If i use the default WPF TreeView everything seems to work, but if i use a custom-TreeView (which is at the ...
2
votes
1answer
265 views
What is the Disadvantage of VirtualizingStackPanel?
What is/are the main disadvantage of VirtualizingStackPanel? If it doesn't have any, then why it is not made as a default panel behavior/template in ItemsControl?
2
votes
1answer
2k views
ListBox, VirtualizingStackPanel, and Smooth Scrolling in WPF
I have a ListBox that may have many rows of templated DB records, including an Image, bound to an ObservableCollection<MyItem>. Sometimes the collection could hold thousands of items.
The ...
2
votes
2answers
1k views
What is the difference between a stackpanel and a virtualizingstackpanel in WPF?
What is the difference between a stackpanel and a virtualizingstackpanel in WPF?
1
vote
2answers
163 views
Virtualizing WrapPanel for WP7
I need to create a wrap panel with my facebook friends, meaning the itemcount is over 400, and it takes 5-10 seconds for all the items to load.
<ListBox.ItemsPanel>
...
1
vote
1answer
328 views
wpf - HierarchicalDataTemplate, VirtualizingStackPanel, Window Resize (maximize)
I am having a problem with a wpf treeview that uses a HierarchicalDataTemplate in conjunction with a VirtualizingStackPanel. Using the code provided below, I run the application and expand all the ...
1
vote
2answers
308 views
Scroll a ListBox's VirtualizingStackPanel with buttons
I have a Listbox displaying 5 items at a time, horizontally. I want to implement a 'Previous' and 'Next' button that when clicked, will display the previous set of 5, or next set of 5 items. I am ...
1
vote
1answer
625 views
virtualizing nested containers (virtualizingstackpanel) to a single parent scrollbar in WPF
I've kind of coded myself into a pickle on this one. I am writing a custom WPF control which is similar to the TreeListView described in This MSDN article as well as many other places on the net. ...
0
votes
1answer
260 views
Wpf Xbap TreeView VirtualizingStackPanel bug?
I have a TreeView with VirtualizingStackPanel on. The TreeView has a "Level 1" TreeViewItem, and I bind this TreeViewItem to a 10k items list. Each children is also another TreeViewItem.
...
0
votes
1answer
516 views
Proper usage of VirtualizingStackPanel in WPF
Can somebody please tell me how to properly use the VirtualizingStackPanel in WPF ? I've set a VirtualizingStackPanel in my ItemsPanelTemplate for my ItemsControl, and set it as my ItemsHost, but when ...
0
votes
1answer
176 views
WPF Validation inside UI Virtualized ListBox
I need to do some kind of data validation in a WPF application I am developing
As far as I know, when you add ValidatesOnDataErrors=True to the Binding, everytime the Binding is resolved (it can be ...
0
votes
1answer
728 views
VirtualizingStackPanel stops working when overriding the default control template for ScrollViewer
I have a listbox with a lot of items which are expensive to render. However the VirtualizingStackPanel takes care of that by only rendering the visible items. I want to override the control template ...
0
votes
1answer
181 views
WPF - Need an event for when VirtualizingStackPanel creates Items for ListView
Is there any way to tell when the containers are finished being made for a ListView?
A detailed explanation of what I've done so far
I have a ListView control that has a DataTemplate in one of its ...
0
votes
1answer
453 views
VirtualizingStackPanel Is not working
I have the following ListBox:
<ScrollViewer>
<!--Spec Definitions-->
<ListBox DataContext="{Binding SpecPackageSpecGroupListViewModel}" ...
0
votes
1answer
351 views
Is it possible to make a HeaderedItemsControl use a VirtualizingStackPanel effectively?
I'm building an application that displays a hierarchy of Node objects. Each node has a collection of Field objects, plus a Children property of type ObservableCollection<Node>.
I've created a ...
0
votes
2answers
287 views
Need to trigger an event when ListBoxItem is clicked in ControlTemplate
I'm overriding the styles of my ListBoxItems with a ControlTemplate, however by doing that, I lost the handler for my ListBoxItem click event. I found a post that was helpful in saying I need to add ...
0
votes
2answers
411 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 ...