Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
2k views

Resources and guides to UI virtualization in WPF

UI Virtualization is an awkward terminology that describes WPF UI controls that load and and dispose child elements on demand (based on their visibility) to reduce memory footprint. ListBox and ...
5
votes
1answer
584 views

Is there a (good/free) VirtualizingWrapPanel available for WPF?

I've found a couple of alternatives, this CodePlex project and this commercial one, but the former is extremely inefficient in my testing, and the latter, well, costs $$. I've also found this ...
5
votes
3answers
2k views

WPF Performance: Displaying thousands of Paths / Shapes on a Canvas

I'm currently developing a visualization tool that draws WPF shapes such as paths, ellipses etc. on a Canvas. I've already implemented a virtualized approach where Shapes are being destroyed and ...
3
votes
1answer
668 views

WPF : TreeView virtualization not working

What can stop a TreeView from virtualizing if the TreeView is set up as follows? <TreeView ItemsSource="{Binding}" VirtualizingStackPanel.IsVirtualizing="True"> ...
2
votes
1answer
214 views

ScrollIntoView with nested ScrollViewer

In my application I have an Canvas wrapped in an ScrollViewer (Canvas is bigger then the screen size). On this canvas I have placed other controls. One of the elements on the canvas contains an ...
2
votes
1answer
342 views

Enabling UI virtualization on the WPFToolkit Accordion

I am using the WPFToolkit Accordion control with the items in the accordion defined to be a TreeView. For context, here is the relevant part of the XAML: <ScrollViewer ...
1
vote
1answer
36 views

Scroll Viewers as master of Video Memory management

I dont know how many of you have observed this, when we minimize a complex WPF application we can observe reduction in used memory. Also when we restore the WPF window, it regains that memory. My ...
1
vote
1answer
145 views

WPF virtualization not working on windows 2008 server R2 with windows classic theme(aero disabled)

I am running into a weird problem with windows server 2008 R2. I have WPF app which has virtualization enabled (virtualization stack panel and lazy loading for the tree view). It works as exepcted on ...
1
vote
0answers
113 views

How to get virtual Item of databound ListBox?

If I have a list of Cars bound to a ListBox. I now want to implement that the first item is initially focused, additionally I want to implement a full keyboard navigation between the displayed ...
1
vote
1answer
964 views

Android ListView Data Virtualization - Lazy Loading more than 10,000 items

Does anybody have an example of lazy loading (about 10,000 items) an Android ListView from a Sqlite databse?
1
vote
1answer
581 views

Silverlight MediaElement and UI Virtualization

I have an application that contains many controls on a panel, each with its own MediaElement playing video. I have been looking into the new UI Virtualization features of Silverlight 3 to improve ...
0
votes
1answer
10 views

How to load large number of controls in Canvas selectively

I have a big size Canvas and a lot of small user controls placed over it. At a time only a small portion of the canvas is visible on screen. The usercontrols are created by the ItemsControl which is ...
0
votes
0answers
38 views

Data Virtualization and SelectionMode Extended

I have a ListBox binding to an ItemsSource that implements IList and IList, but it seems that the SelectionMode=Extended behavior is not what I would expect compared to binding to a non virtualizing ...
0
votes
0answers
12 views

connect multiple scraan, keyboard amd mices to a xen server

I'm searching for a solution to implement multiple screens+keyb+mices using different OS with only one computer. I already use Xen server, but I can just use one of the os installed at the same ...
0
votes
0answers
94 views

How to bind IsSelected in a ListView for non-visible (virtualized) items

I need to deal with a large amount of data in a WPF application. I have bound the large collection to a ListView and I'm using the ItemContainerStyle to bind the list item's IsSelected property with ...
0
votes
1answer
153 views

DataGrid scrolling issue fix leads to performance and memory issue

We had issue with the Scrolling of the WPF datagrid. With some analysis found the ScrollViewer.CanContentScroll = true was the culprit. Removing and making it false, the scrolling issue was fixed. BUT ...
0
votes
0answers
127 views

Silverlight UI Virtualisation for Listbox with Items having writable bitmap

I have a created a display control with two Columns - 1. A thumbails list and 2. Listbox of images. The images are written to writeable bitmap and then added to listbox items. I have created custom ...
0
votes
2answers
337 views

VirtualizingStackPanel not working for ComboBox

I am absolutely new to WPF. I can't figure out why isn't the VirtualizingStackPanel working for the following. I already have experimented with the ScrollViewer but it doesnt' work for me. I have ...