First create a custom DataTemplate that uses adjacent TextBlocks to render values from 2 different columns next to each other.
<Window.Resources>
<DataTemplate x:Key='lbItemsTemplate'>
<StackPanel FlowDirection='LeftToRight' Orientation='Horizontal'>
<TextBlock Text='{Binding Path=Title}'></TextBlock>
<TextBlock Text=' \ '></TextBlock>
<TextBlock Text='{Binding Path=Summary}'></TextBlock>
</StackPanel>
</DataTemplate>
</Window.Resources>
Above, Title and Summary are the two columns.
Then specify this template in your ListBox:
<ListBox x:Name='ListView1' ItemTemplate='{StaticResource lbItemsTemplate}' ItemsSource='{StaticResource InventoryData}'>
</ListBox>
Permalink