I want to modify itemscontrol template to modify not how each item apears but the actual itemscontrol
<ItemsControl
ItemsSource="{Binding RB}" Grid.Row="1"
ItemTemplate="{StaticResource myBTemplate}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel></StackPanel>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
I have this and it's works fine, I get a stackpanel behaviour of items and my custom data template for each item but I can't find a way to modify the container. Let's say to put the title into my items list without doing so outside itemscontrol. and if i do set ControlTemplate items no longer get displayed. (This Itemscontrol is part of an upper level DataTemplate)