tags:

views:

35

answers:

1

How to seperate between items BY Lines in ListView control in WPF ?

+1  A: 

You can change the ItemTemplate for the ListBox, given the little information you have provided, just a quick example:

<ListBox>
 <ListBox.ItemTemplate>
  <DataTemplate>
   <Border BorderBrush="Black" BorderThickness="0.5">
    <TextBlock Text={Binding}/>
   </Border>
  </DataTemplate>
 </ListBox.ItemTemplate>
</ListBox>

You will have to modify it to suit your needs.

TimothyP