Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am very new to WPF so please excuse me if the question seems naive. My objective is to create a WPF 'form' dynamically which contains only pairs of labels and combo boxes depending on the number of items being supplied to me. I am currently thinking of using a control which enables UI virtualization such as an items control and defining each individual item as a pair of label and combo boxes.

Question 1: Will a control virtualize a custom item containing a label and combo box by default? Question 2: Which is the best control to use for virtualization in this scenario?

I tried using an ListView/ListBox but that has a feature to highlight all items by default on mouse over which is undesirable.

The criteria for this is speed. I should ideally load only those labels and combo boxes that the user is currently scrolling through. Do I need to implement my own virtualization for this or can lists with custom items be virtualized by WPF? My custom item here is a pair of label and combo box together.

Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.