Why Does ItemsControl Not Use My ItemTemplate? Why Does ItemsControl Not Use My ItemTemplate? wpf wpf

Why Does ItemsControl Not Use My ItemTemplate?


The ItemsControl has a protected member IsItemItsOwnContainerOverride which is passed an object from the items collection and returns true if that object can be added directly to the items panel without a generated container (and thereby be templated).

The base implementation returns true for any object that derives from UIElement.

To get the behaviour you would expect you would need to inherit from ItemsControl and override this method and have it always return false. Unfortunately thats not the end of the matter. The default implementation of PrepareContainerForItemOverride still doesn't assign the ItemTemplate to the container if the item is a UIElement so you need to override this method as well:-

    protected override bool IsItemItsOwnContainerOverride(object item)    {        return false;    }    protected override void PrepareContainerForItemOverride(DependencyObject element, object item)    {        base.PrepareContainerForItemOverride(element, item);        ((ContentPresenter)element).ContentTemplate = ItemTemplate;    }


I'm just speculating here, but I would bet that it's behavior that lives inside of the ItemContainerGenerator. I'd bet that the ItemContainerGenerator looks at an item, and if it's a UIElement it says, "cool, the item container's been generated, I'll just return it" and if it's not, it says, "I'd better generate a container for this item. Where's the DataTemplate?"