I would like the items of my ListView to grow to take up the entire width of the avaliable space within the ListView. Currently, I have the item's width set like this (the ListView is named listView):
Width="{Binding ActualWidth, ElementName=listView, Mode=OneWay}"
The items will take up the width of the ListView. However, the vertical scroll bar is not taken into account. If the scroll bar is present, it is drawn on top of the right edge of the items.
Is it possible to fix this?