Removing a WPF ListView's "classic" indented border

border, listview, styles, wpf

Solution

Don't know if its a former version of WPF, but on Visual studio 2008 the following is enough to remove all borders and colors of a listview control

<ListView Background="Transparent" BorderThickness="0">

Problem

How can I remove the "classic" indented border from around my WPF `ListView` control? Setting its `BorderThickness` to 0 does not get rid of it.

Original source