I have a listview and I add many items into that list. However, when I scroll down to the last item, there’s an empty row. I don’t know how to get rid of it.
Thanks
This is the picture of it
I have a listview and I add many items into that list. However, when
Share
I noticed the empty space at the bottom of the ListView isn’t an item. It has got to do something with the layout. More specifically, I’m suspecting the layout as managed by the scrollbar. When fiddling around with the
Marginproperty of the list, sometimes the empty space at the bottom isn’t there. I triedMargin="10". Ofcourse this isn’t a solution, but it indicates where the problem lies a bit better.I found it, this is space which is reserved for the horizontal scrollbar.
I tried disabling it with the
ScrollViewer.HorizontalScrollBarVisibility="Disabled"property, but this didn’t remove the space.