You can do this by modifying the ItemsTemplate
<ListBox ItemsSource="{Binding YourItems}">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding TextProperty}" TextWrapping="Wrap"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
This assumes your viewmodel has a "YourItems" property that is an IEnumerable and that YourObject has a TextProperty property on it that is a string