<ListBox Width="100" Height="100" Background="Transparent">
<ListBox.ItemTemplate>
<DataTemplate>
<Border>
<StackPanel>
<WrapPanel>
<TextBlock Text="{Binding ListBoxItem.Content}" />
</WrapPanel>
</StackPanel>
</Border>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.Items>
<ListBoxItem Content="Item #1" />
<ListBoxItem Content="Item #2" />
<ListBoxItem Content="Item #3" />
</ListBox.Items>
</ListBox>