I\'d like to hide the border of ListBox, and make background of selected item the same as unselected ones.
How do I do this?
To hide the border, use
If you don't want to have a selection, use an ItemsControl instead of the ListBox.
The following code hides the border around the ListBox and does always show a white background on the item (if its generated through the ItemsSource-property).
If you use ListViewItem-instances, you must change the background there.
UPDATE
This should work also with ListBoxItem-instances and is IMO less "work-around".