Wrong way around. Customize the panel that the ItemsControl uses to contain its items:
<ItemsControl>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
HTH, Kent
Kent Boogaart
2009-08-04 15:47:14