headereditemscontrol

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 user control to display the Node objects. This control is a HeaderedItemsControl whose header lays out all of the Field objects, and whose Items...

ItemsControl with static header

Hi I think I have a pretty simple goal but cant seem to reach it. All I want to achieve is to have a ItemsControl (because I don't want the selection functionality of a list) with a header. Preferably a static header. Currently I'm using a grid for the header and then copying that grid into the ItemTemplate (DataTemple) of the ItemsCo...